phlipineck
Forum Replies Created
-
Glowing feedback left!we are using in very simply to scrape a supplier webpage and use Gemini to rewrite for our own website – another project you might find interesting – we are having to use ‘Appearance’ and ‘Customize’ to write additional CSS from the Gutenberg block that Gemini delivers. I ‘block Conversion and Style’ app would be great.
Thanks again going to look at you other apps to see what else we can use for our social, SEO and workflow
PhilThanks for your help and patience Jordy – we got that working and thanks again for all your effort with this
PhilHi Jordy,
Just for your info the webhook url is still barely visibleas you knwo I’m using Meow Workflow v0.1.3 on WordPress 7.1 with PHP 8.1.
I have an HTTP Request step (step ID:
gemini) that calls the Google Gemini API. The step’s output lists three variables:{{ gemini.status }},{{ gemini.body }}, and{{ gemini.json }}.When I use
{{ gemini.body }}in a later step, it correctly inserts the raw JSON response string.However, when I try to access the parsed JSON object using
{{ gemini.json }}or a nested path like{{ gemini.json.candidates[0].content.parts[0].text }}, the output is empty.I also tried
{{ gemini.candidates[0].content.parts[0].text }}(without.json), which was also empty.Could you please tell me the correct syntax to extract a nested value from the JSON response body? For example, how would I get the
textfield from:json{ “candidates”: [ { “content”: { “parts”: [ { “text”: “Rewritten content here…” } ] } } ] }
Thank you!
PhilHi Jordy,
I’m still stuck on this. I have two problems:
Problem 1: Webhook URL is blank
- The workflow is published and set to “Active” (status bar says “Live up to date”)
- But when I click on the Trigger step, the Webhook URL field is blank
- There is no URL to copy
Problem 2: Firecrawl returns “Invalid URL”
- The Trigger step shows this sample payload:json{ “url”: “https://www.swotahtravel.com/golden-circle-trip” }
- In the Firecrawl HTTP Request, the Body field is:json{ “url”: “{{ trigger.body.url }}”, “formats”: […] }
- Firecrawl response shows:text”Invalid URL”
- The output of the HTTP Request step shows
null
So the URL is in the sample payload, but it’s not being passed to Firecrawl correctly.
Environment:
- WordPress: 7.1
- PHP: 8.1
- Meow Workflow: latest
Please help me fix this. I’ve spent many hours trying to get this to work.
Thanks,
Philand….thank you for your time and for building this plugin!
Environment:
- Meow Workflow: latest
- WordPress: 7.1
- PHP: 8.1
The Firecrawl response structure (from their docs) is:
{
“success”: true,
“data”: {
“markdown”: “…”,
“metadata”: {
“title”: “…”
}
}
}