awesome, i've seen dozens of automation videos. every creator hides some important things which is offered in paid blueprints. hatsoff to Jono Catliff, he delivered everything free of cost, and explained each make block in detail.
Crispy, to the point, no fluff, no moving subs here and there for files, sharing each work honestly, educating subs in true way, this is why I never miss any of the video of the video of this handsome guy with a bell icon pressed, Keep it up Jono 😍
Thanks a lot, but there is a problem: using Amazon links is against both Amazon and Pinterest policies. What should we do if we want to first publish every pin as a post on our website with the affiliated link, then create the pins based on the post on our website?
Hey Dave, great question. I got the 25 preset interests from Pinterest. Here's al ink to their API documentation, and under "interests" you can find the 25 interests you can choose from: developers.pinterest.com/docs/api/v5/trending_keywords-list
Hey there, sorry I don't understand! Are you referring to the iterator here? If you're not receiving data to map into the next modules from that iterator, you'll just need to run the scenario again in test mode (that massive purple play button at the bottom left). Alternatively, you can download the blue prints for free and upload them into your Make.com account :) Hope this helps and best of luck!
Terrific! Question: You are in the process of creating a new image of the pillow. When the referral link is selected, what if the images appear different from your pin image?
Hey! Great question, thanks for bringing this up. There's two ways to address this: 1. If you don't feel like the AI image represents the product well, you could skip over this Pin and move onto the next. Sometimes the images generated could be bad, or be no where near what the product looks like. Since you'll be generating almost an endless supply of pins, missing one shouldn't be too big of a deal 2. If it is a big deal, you can create another Make.com workflow where you just enter in the Pin manually and re-do it. Hope this helps!
Hey there! Sorry, seems like my earlier comment was never published. This is a great question. Essentially, when using AI, it's not a silver bullet, so it's not going to be perfect everytime. For this reason, I pulled 3 Amazon products to choose from. In some rare instances all 3 images will not be good. In that case, you have 2 options. 1. Ignore it and move onto the next. This is what I'd do. Since you're generating so many, it doesn't matter much in my opinion if you miss one or two. 2. You can duplicate the workflow, but have this second version for manual keywords you want to retry on Hope this helps!
Hi Jono, I am a pensioner just starting my journey down the Pinterest road. I have to compliment you on your amazing ability and patience in teaching such a technical and valuable resource-very well done. I would like to offer a suggestion, if I may. It would be helpful to move your picture to the extreme right of the screen instead of its current position on the left. As a trainee, I missed a couple of things you did because of its placement. You are going to be very successful; of that, I am certain. Thank you for your excellent instruction." PS.. just one question, which filters must we delete to make sure we get more than 1 returned data?? Walt
Hey Walt! Thank you very much for the comment and the compliment. This is a great suggestion, thanks! I'll change this. In regards to your question, I just re-uploaded the blueprint with the filter removed, if you'd liek to re-download it. Otherwise, it's the filter between module 3 (the iterator) and module 4 (google sheets), where it says the 'bundle order position' must equal 1. You can just remove that and it'll work properly
@@jonocatliff the first google sheet isnt anywhere. I have the second sheet with the links and images etc but the interest and boards sheet is missing and how did you add the interests section from pinterest?
Awesome content! Thx a lot. I wanted to build your workflow but in the first Pinterest part the body is empty. I made the string lower case but it didn’t work. When I hardcode the keyword it works. Any idea what I did wrong?
Thanks for pointing this out. Pinterest, and APIs in general, can be quite particular with the way you format information. You'd have to let me know the keyword so that I could take a look on my side. For general troubleshooting, I'd just make sure that the keyword is properly getting passed from the spreadsheet into the Pinterest module and that the spreadsheet being referenced properly. Also, I'd make sure there's no special characters in the keyword, otherwise this would likely cause the value to return empty as well
These are generous blueprints at any price, so please don't misunderstand me as being ungrateful, I couldn't find the zip I purchased, so I tried to offer $0 to download it again, it's not do-able. So - not free, in case you were thinking they were. They're very valuable and I'm sincerely grateful for everything you teach.
Hey there! Hmmm, very strange, I guess there was a bug on Gumroad perhaps? I would recommend trying an incognito tab, or trying another browser to download them. There's typically hundreds of people downloading my blue prints for free daily :) Let me know if this happens again! Thanks :)
@@jonocatliff I found the email I got after purchasing it. Stellar blueprint, wow. I got it running after I figured out they gave me permission on a different API connection. Works great. LOVE it. If anyone has trouble with getting blank trends research, try adding an underbar to the keyword (include_keywords): {{replace(lower(1.rowValues[].`1`); ; "_")}}
Thanks for this great video. I have two questions I can't figure out: 1. The actor doesn't stop at 3 Maximum charged results-it keeps running. Do I need to adjust something in make? 2. I'm unsure if the table should be populated with all the popular keywords we got from Pinterest or just one. Also, should the automation run multiple times? Thanks for your time and effort
Hey Christian! I just re-uploaded the blueprint with the filter removed, if you'd like to re-download it. Otherwise, it's the filter between module 3 (the iterator) and module 4 (google sheets), where it says the 'bundle order position' must equal 1. You can just remove that and it'll work properly
In regards to question #2, are you referring to the Google Sheets board tab? If so, you can just load up the most popular keywords, and then the automation will find more niche, long-tail keywords that would be easier to rank for (e.g. if you put 'throw pillow', it might give something like 'throw pillow living room couch'). When you're ready to create pins around that keyword, you'll just hit the checkbox. The automation should run multiple times, you'll just need to remove the filter in my comment above. Best of luck, hope this helps!
Thanks for the quick help. The apify actor just keeps running and I have to stop it manuallly. The setting "maximum charged results" doesn't work when I set it to 3. Is there another way to stop it after three results?
Found the issue with the Apify Actor: The max items input variable is mispelled. It is "maxItemsaPerStartUrl": 3. - It should be "maxItemsPerStartUrl": 3 -> Now it works 🙂
I am running into a problem on the second apify node, I am getting "Missing value of required parameter 'datasetId'", then on the following http module i'm getting a "Missing value of required parameter 'url'." I can not find the high rez url in the previous Apify tree.
Hey there! So you really only have one problem which is the first issue of the datasetID being missing - this will cause cascading errors down the rest of the workflow. If you solve the first issue, the second should solve itself. Essentially, you're trying to grab the web scraping data before it's completed. 1. Please make sure that it's running synchronously, otherwise you'll encounter this error (meaning it'll wait till the data is loaded) 2. Try running it with a maximum of 2 results. If it takes longer than 120 seconds to load the webscrape, Apify will automatically move onto the next module. If this is the case, you'll need to separate the workflow into 2 parts, where you run the web scraper via Apify, then you move the rest of the workflow into another scenario, where all you'd do is just add a trigger from Apify watching for the actor runs. You can also download my free blue print and it should work outside of the box Best of luck :)
Hey there, thanks for the comment. Unfortunately I don't understand. However, I'll do my best to try to answer what I think you may be asking: The filter on the create a board route is there to make sure that you don't create multiple boards with the same name to host similar pins. You'll want to make sure that there's only one board created for each set of pins you're creating, otherwise you'll create an error! Hope this helps :)
Hey there, based on the information provided, the best I can do is give you some recommendations: 1. Make sure that the paths all have filters, you can only create the board one time, otherwise it'll throw an error because the board already exists (1:03:35) 2. Boards can't have the same name, they always have to be unique 3. Make sure that once the board is created for the first time, you update all the other rows in the Google Sheet so that we know that a board has already been assigned to that keyword (1:11:08) 4. You can download my blue print for free, and it should work out of the box for this Best of luck, hope this helps :)
Jono, any tips on getting pinterest to approve the api auth? I've either gotten rejection with no explanation, or I get to "trial mode" and it stops there. I cannot call the trends link. Thanks!
Hey there, thanks for the comment! Are you able to please send me the exact error with the error code (i.e. 400)? There could be dozens to hundreds of reasons, so that code would let me help you out :)
Hi Jono, great stuff! The problem I found is that if i "approve" multiple pins, it only publishes 1 per run. This makes the automation not time-saving. Am I doing something wrong? How can i get all the approved pins approved at once? Thanks
Hey! The scenario runs on a 'watch changes' from Google Sheets. This is fired each time a row is updated. If you update 10 rows at the same time, it'll only fire 1 row, only one change has been registered. You need to manually check the 10 boxes individually (will take an extra 3 seconds)
@@jonocatliff I've been trying to fix this for days without success. I followed the video; maybe you made some changes to the blueprint? Please let me know.
Test mode is just for testing, you'll receive one result at a time. Once it's working properly you need to turn the scenario live, by publishing it. You can see the previous runs in the history tab if you need to look at the excecutions
Hey, for this particular video, all the software I chose are free to get started with. Pinterest, Google Sheets, Apify, Stability.ai all have free plans. If you were to start using tons of resources, then you'd probably have to upgrade. I'm not quite sure what that would cost off the top of my head
Hey there, great question. I'm not 100% sure, but my guess is that you have multiple variables with the same name. So for example, if in the array aggregator, you have two variables with the name "data", it'll only pull in one. I'm just taking a guess here, but there may be some reserved items that can't pass through - not sure though. Best of luck!
Using this as a learning curve on make, I am having a hell of a time getting the values to be passed to the 1st Pinterest module, the key gets taken but not the values, I have ensured they are mapped correctly, lower case etc, IM STUCK (They work statically, but not dynamically)
Hey Nelson, thanks for letting me know. With the limited information I have, I can't really help you out - can you provide me with the exact keywords that aren't working? First though, I'd check to see if you're receiving the include_keywords in the Google 'watch for changes' module and that is passing into the Pinterest API call :)
Hey there, it's likely that your JSON data isn't formatted correctly. I would do one of two things: 1. Reset the Apify scraper, and copy and paste the JSON in again to Make.com without changing anything, and seeing if it runs. If it does, then carefully replace the keyword with the dynamic value, without deleting any "", or commas. 2. Download the blue print I provide for free as it should work out of the box Hope this helps!
Hey there, thanks for the comment! I believe this error is referring to either Make.com or Pinterest currently being down or that one of them (likely Make.com) cannot be found due to a network issue. This should be fixed without you needing to do anything. The solution is either: 1. to make sure your internet didn't cut out temporarily, and 2. just wait a bit while the application that create the error fixes the issue on their side. Sometimes software will crash, or have downtime, likely because they updated their code and there was a bug, meaning that they'll have to discover it, then fix it before you can use it again Hope this helps :)
Hi Jono, I just wanted to suggest a project that I think will be very popular with your subscribers, could you put together a process that is able to create consistent characters of images. There is a massive demand for this but there are so many different ways to do this and none of them a practical approach.. possibly you could work you magic and find an easy solution here.. Walt
Hey! This is a great idea :) Just to clarify, when you mean 'characters of images', do you just mean creating an images that predictably look the same?
Hi Jono, I was suggesting charachers for an ebook story, you did do make,com session on ebooks but that was a little over my head.. I think a lot of people are using Canva to produce stories but to create CONSISTANT Characters while also being able to put them into different scenes is what most creators need.. thanks again Walt
Hey there! Have you tried the free blue print here? jonocatliff.gumroad.com/l/ubnedk From what you're describing, it sounds like you've entered in the 'interests' part of the API call but not the 'include_keywords' part. If you enter in a word like 'pillow' in the 'include_keywords' part, it will only ever return keywords that contain the root phrase 'pillow'. Hope this helps and best of luck :)
Hey there! Have you tried using the free blue print I have in the description? It should work perfectly. The problem that you're mentioning seems like you're missing the include_keywords query parameter. Essentially, what the include_keywords parameter does, is it limits the results to keyphrases that include the keyword you put in. So for example, if you enter in 'pillow', the results will all contain the word pillow, such as throw pillow, couch pillow, etc
Hey there! Based on the limited info provided I'm not quite sure how to address the issue, as the blue print works for me and others downloading it. There's only two suggestions I can provide: 1. Make sure the data is being passed correctly from the Google Sheet into the Pinterest API call, and the 'interests' and 'include_keywords' is being mapped properly. If it's not, you will encounter the error you're receiving 2. Make sure that the 'include_keywords' is structured properly, otherwise you'll encounter this issue. Perhaps, you can try re-downloading the original file again, and trying again. I've personally spend dozens of hours trying to solve things in the past only to realize much later that I was super close to the solution. APIs are not easy, and the slightest change in spelling or syntax will throw an error. I wish you the best of luck, you've got this :)
Hey there, thanks for the comment. If you're not getting the right keywords to display in the Pinterest module (19:20 timestamp), this would be because the "include_keywords" query parameter isn't working properly. Here's what I'd do: 1. Make sure that you have another query parameter set up, like I do at 19:20, with "include_keywords" being the key, and "pillow" being the value. Just hardcode it for the first run and see if it returns anything 2. Then you'll want to make sure it's dynamic with the value being from the spreadsheet. You'll want to make sure you're referencing the right column from the spreadsheet, and you'll also need to check the input into that Pinterest module. Is it actually receiving the keyword from the Google Sheet, or is it not working properly? Chances are, it's one of these two issues 3. You can download my blue prints in the description for free and use that, it should work out of the box Hope this helps! Best of luck :)
Hmmm, I've never heard of this happening before. I would try an incognito tab, or another browser (firefox, safari, google chrome), and maybe restart your computer. Lastly, maybe gumroad had downtime. Hope this helps!
awesome, i've seen dozens of automation videos. every creator hides some important things which is offered in paid blueprints.
hatsoff to Jono Catliff, he delivered everything free of cost, and explained each make block in detail.
Hey, thank you so much for the comment, I'm really flattered. You're the best!
Crispy, to the point, no fluff, no moving subs here and there for files, sharing each work honestly, educating subs in true way, this is why I never miss any of the video of the video of this handsome guy with a bell icon pressed, Keep it up Jono 😍
Thanks so much! Really means a lot to hear :) Will do!
wow! super complex yet simply explained walkthrough as always 🙏🙏🙏🙏 thank you Jono🙌🙌🙌
No worries, thanks for the comment, really appreciate it :)
Thanks a lot, but there is a problem: using Amazon links is against both Amazon and Pinterest policies. What should we do if we want to first publish every pin as a post on our website with the affiliated link, then create the pins based on the post on our website?
Underrated Channel
Hey, thanks so much, really appreciate it. Hope you're finding value in the content :)
Thank you so much. This is great content!
Hey, thank you very much, hope this helps!
Another excellent video, quality and applicability, perfect master, very good.
Hey! Thank you so much, really appreciate it :)
How did you add col A in the boards sheet Jono? I would love to learn it. that would be a great part of a video
Hey Dave, great question. I got the 25 preset interests from Pinterest. Here's al ink to their API documentation, and under "interests" you can find the 25 interests you can choose from: developers.pinterest.com/docs/api/v5/trending_keywords-list
How can I fix 27:10. , spreadsheet I'd did not load and failed to save
Hey there, sorry I don't understand! Are you referring to the iterator here? If you're not receiving data to map into the next modules from that iterator, you'll just need to run the scenario again in test mode (that massive purple play button at the bottom left). Alternatively, you can download the blue prints for free and upload them into your Make.com account :)
Hope this helps and best of luck!
Great video! Loved the content. I will try to this project
Amazing, thanks! Good luck using this :)
It's really actually helping a lot. Thank you so much.
Amazing, great to hear!
Terrific! Question: You are in the process of creating a new image of the pillow. When the referral link is selected, what if the images appear different from your pin image?
Hey! Great question, thanks for bringing this up. There's two ways to address this:
1. If you don't feel like the AI image represents the product well, you could skip over this Pin and move onto the next. Sometimes the images generated could be bad, or be no where near what the product looks like. Since you'll be generating almost an endless supply of pins, missing one shouldn't be too big of a deal
2. If it is a big deal, you can create another Make.com workflow where you just enter in the Pin manually and re-do it.
Hope this helps!
Hey there! Sorry, seems like my earlier comment was never published. This is a great question. Essentially, when using AI, it's not a silver bullet, so it's not going to be perfect everytime. For this reason, I pulled 3 Amazon products to choose from. In some rare instances all 3 images will not be good. In that case, you have 2 options.
1. Ignore it and move onto the next. This is what I'd do. Since you're generating so many, it doesn't matter much in my opinion if you miss one or two.
2. You can duplicate the workflow, but have this second version for manual keywords you want to retry on
Hope this helps!
Hi Jono,
I am a pensioner just starting my journey down the Pinterest road. I have to compliment you on your amazing ability and patience in teaching such a technical and valuable resource-very well done.
I would like to offer a suggestion, if I may. It would be helpful to move your picture to the extreme right of the screen instead of its current position on the left. As a trainee, I missed a couple of things you did because of its placement.
You are going to be very successful; of that, I am certain.
Thank you for your excellent instruction." PS.. just one question, which filters must we delete to make sure we get more than 1 returned data?? Walt
Hey Walt! Thank you very much for the comment and the compliment. This is a great suggestion, thanks! I'll change this. In regards to your question, I just re-uploaded the blueprint with the filter removed, if you'd liek to re-download it. Otherwise, it's the filter between module 3 (the iterator) and module 4 (google sheets), where it says the 'bundle order position' must equal 1. You can just remove that and it'll work properly
@@jonocatliff Thank you Jono!
Incredible Jono thank you so much can you shared the first sheet you use too?
Don't worry about that Jono thank you for this amazing video
Hey Jayho! The Google Sheet should be in the blue prints. Let me know if it isn't :)
@@jonocatliff the first google sheet isnt anywhere. I have the second sheet with the links and images etc but the interest and boards sheet is missing and how did you add the interests section from pinterest?
Awesome content! Thx a lot. I wanted to build your workflow but in the first Pinterest part the body is empty. I made the string lower case but it didn’t work. When I hardcode the keyword it works. Any idea what I did wrong?
Thanks for pointing this out. Pinterest, and APIs in general, can be quite particular with the way you format information. You'd have to let me know the keyword so that I could take a look on my side. For general troubleshooting, I'd just make sure that the keyword is properly getting passed from the spreadsheet into the Pinterest module and that the spreadsheet being referenced properly. Also, I'd make sure there's no special characters in the keyword, otherwise this would likely cause the value to return empty as well
How did you hardcore the keywords
Bro u re a Master 💪
Hahaha, thank you very much 🙏 :)
These are generous blueprints at any price, so please don't misunderstand me as being ungrateful, I couldn't find the zip I purchased, so I tried to offer $0 to download it again, it's not do-able. So - not free, in case you were thinking they were. They're very valuable and I'm sincerely grateful for everything you teach.
Hey there! Hmmm, very strange, I guess there was a bug on Gumroad perhaps? I would recommend trying an incognito tab, or trying another browser to download them. There's typically hundreds of people downloading my blue prints for free daily :) Let me know if this happens again! Thanks :)
If you were unable to download it, you can send me an email and I'll send it over
@@jonocatliff I found the email I got after purchasing it. Stellar blueprint, wow. I got it running after I figured out they gave me permission on a different API connection. Works great. LOVE it.
If anyone has trouble with getting blank trends research, try adding an underbar to the keyword (include_keywords):
{{replace(lower(1.rowValues[].`1`); ; "_")}}
Perfect, great to hear @NeuralCatch, thanks for keywords tip too :)
Thumps up for JC
Thanks! :)
Hi Jono! Can you also add the first excel sheet in your template?
Hey there, it should be in the Gumroad link at the bottom :) You'll just need to make a copy of it
@@jonocatliff the first google sheet is not there aarrgghh!!!
Since this works with Pinterest, would it be good with other platforms using affiliate marketing items?
You're absolutely right! You could do this with any platform :)
Thanks for this great video. I have two questions I can't figure out:
1. The actor doesn't stop at 3 Maximum charged results-it keeps running. Do I need to adjust something in make?
2. I'm unsure if the table should be populated with all the popular keywords we got from Pinterest or just one. Also, should the automation run multiple times?
Thanks for your time and effort
Hey Christian! I just re-uploaded the blueprint with the filter removed, if you'd like to re-download it. Otherwise, it's the filter between module 3 (the iterator) and module 4 (google sheets), where it says the 'bundle order position' must equal 1. You can just remove that and it'll work properly
In regards to question #2, are you referring to the Google Sheets board tab? If so, you can just load up the most popular keywords, and then the automation will find more niche, long-tail keywords that would be easier to rank for (e.g. if you put 'throw pillow', it might give something like 'throw pillow living room couch'). When you're ready to create pins around that keyword, you'll just hit the checkbox.
The automation should run multiple times, you'll just need to remove the filter in my comment above.
Best of luck, hope this helps!
Thanks for the quick help. The apify actor just keeps running and I have to stop it manuallly. The setting "maximum charged results" doesn't work when I set it to 3. Is there another way to stop it after three results?
Found the issue with the Apify Actor: The max items input variable is mispelled. It is "maxItemsaPerStartUrl": 3. - It should be "maxItemsPerStartUrl": 3 -> Now it works 🙂
i have the same issue
I keep getting a stability error. Any idea why? Error
[404] The specified engine (ID stable-diffusion-512-v2-1) was not found.
Hey there, this should be fixed by trying a different module. This Make.com module is pretty difficult to use :)
I am running into a problem on the second apify node, I am getting "Missing value of required parameter 'datasetId'", then on the following http module i'm getting a "Missing value of required parameter 'url'." I can not find the high rez url in the previous Apify tree.
Hey there! So you really only have one problem which is the first issue of the datasetID being missing - this will cause cascading errors down the rest of the workflow. If you solve the first issue, the second should solve itself.
Essentially, you're trying to grab the web scraping data before it's completed.
1. Please make sure that it's running synchronously, otherwise you'll encounter this error (meaning it'll wait till the data is loaded)
2. Try running it with a maximum of 2 results. If it takes longer than 120 seconds to load the webscrape, Apify will automatically move onto the next module. If this is the case, you'll need to separate the workflow into 2 parts, where you run the web scraper via Apify, then you move the rest of the workflow into another scenario, where all you'd do is just add a trigger from Apify watching for the actor runs.
You can also download my free blue print and it should work outside of the box
Best of luck :)
i have a problem in the router i have only the three row and not all details
the set up filter in the Crate Board is display me only the value board in the sheet
Hey there, thanks for the comment. Unfortunately I don't understand. However, I'll do my best to try to answer what I think you may be asking:
The filter on the create a board route is there to make sure that you don't create multiple boards with the same name to host similar pins. You'll want to make sure that there's only one board created for each set of pins you're creating, otherwise you'll create an error! Hope this helps :)
I have problem with final pinterest erour bord id !! Can U help
Hey there, based on the information provided, the best I can do is give you some recommendations:
1. Make sure that the paths all have filters, you can only create the board one time, otherwise it'll throw an error because the board already exists (1:03:35)
2. Boards can't have the same name, they always have to be unique
3. Make sure that once the board is created for the first time, you update all the other rows in the Google Sheet so that we know that a board has already been assigned to that keyword (1:11:08)
4. You can download my blue print for free, and it should work out of the box for this
Best of luck, hope this helps :)
Jono, any tips on getting pinterest to approve the api auth? I've either gotten rejection with no explanation, or I get to "trial mode" and it stops there. I cannot call the trends link. Thanks!
Hey there, thanks for the comment! Are you able to please send me the exact error with the error code (i.e. 400)? There could be dozens to hundreds of reasons, so that code would let me help you out :)
@@jonocatliff The exact code was User Error :) API was working, i needed to switch to that one. Thank you so much.
Awesome, great work figuring it out. For me, sometimes the easiest things will have me stuck for the longest time. Keep up the good work :)
hi where to get the google sheet
Hey, it should be in the Gumroad file at the bottom. You'll just need to copy the file to your account :)
@@jonocatliff
Hi Jono, great stuff!
The problem I found is that if i "approve" multiple pins, it only publishes 1 per run.
This makes the automation not time-saving. Am I doing something wrong?
How can i get all the approved pins approved at once?
Thanks
Hey! The scenario runs on a 'watch changes' from Google Sheets. This is fired each time a row is updated. If you update 10 rows at the same time, it'll only fire 1 row, only one change has been registered. You need to manually check the 10 boxes individually (will take an extra 3 seconds)
@@jonocatliff I run the scenario "wait for new data," and then I check each box individually. But the output only creates 1 pin.
@@jonocatliff I've been trying to fix this for days without success. I followed the video; maybe you made some changes to the blueprint? Please let me know.
Did you publish the scenario? Looks like you're just using it test mode
Test mode is just for testing, you'll receive one result at a time. Once it's working properly you need to turn the scenario live, by publishing it. You can see the previous runs in the history tab if you need to look at the excecutions
Just also inform, how much total monthly cost involve using all saas in this setup,
Hey, for this particular video, all the software I chose are free to get started with. Pinterest, Google Sheets, Apify, Stability.ai all have free plans. If you were to start using tons of resources, then you'd probably have to upgrade. I'm not quite sure what that would cost off the top of my head
Hey! All the software in here is free to get started :)
Great Content! does anyone know why in the Array aggregator i am selecting all then press ok. But it does not save (i go back and all are unchecked)
Hey there, great question. I'm not 100% sure, but my guess is that you have multiple variables with the same name. So for example, if in the array aggregator, you have two variables with the name "data", it'll only pull in one. I'm just taking a guess here, but there may be some reserved items that can't pass through - not sure though.
Best of luck!
@@jonocatliff thank you! Do you have a Skool community where we can ask more questions? Really love your content
Hey there! Not yet, but in the future I'll very likely create one :)
Super!
Hey, thank you very much :)
Using this as a learning curve on make, I am having a hell of a time getting the values to be passed to the 1st Pinterest module, the key gets taken but not the values, I have ensured they are mapped correctly, lower case etc, IM STUCK (They work statically, but not dynamically)
Hey Nelson, thanks for letting me know. With the limited information I have, I can't really help you out - can you provide me with the exact keywords that aren't working? First though, I'd check to see if you're receiving the include_keywords in the Google 'watch for changes' module and that is passing into the Pinterest API call :)
GREAT VIDEO!
Thank you very much :)
The issue is coming with the apify. when we try to run it it's saying error in "Input JSON" while the error is not working
Hey there, it's likely that your JSON data isn't formatted correctly. I would do one of two things:
1. Reset the Apify scraper, and copy and paste the JSON in again to Make.com without changing anything, and seeing if it runs. If it does, then carefully replace the keyword with the dynamic value, without deleting any "", or commas.
2. Download the blue print I provide for free as it should work out of the box
Hope this helps!
completely complete
Thank you! Best of luck!
When I try to run the pinterest module I get a connection error : ENOTFOUND: Service is temporarily unavailable.
Origin
Make
Any idea?
Hey there, thanks for the comment! I believe this error is referring to either Make.com or Pinterest currently being down or that one of them (likely Make.com) cannot be found due to a network issue. This should be fixed without you needing to do anything. The solution is either:
1. to make sure your internet didn't cut out temporarily, and
2. just wait a bit while the application that create the error fixes the issue on their side. Sometimes software will crash, or have downtime, likely because they updated their code and there was a bug, meaning that they'll have to discover it, then fix it before you can use it again
Hope this helps :)
Hi Jono, I just wanted to suggest a project that I think will be very popular with your subscribers, could you put together a process that is able to create consistent characters of images. There is a massive demand for this but there are so many different ways to do this and none of them a practical approach.. possibly you could work you magic and find an easy solution here.. Walt
Hey! This is a great idea :)
Just to clarify, when you mean 'characters of images', do you just mean creating an images that predictably look the same?
Hi Jono, I was suggesting charachers for an ebook story, you did do make,com session on ebooks but that was a little over my head.. I think a lot of people are using Canva to produce stories but to create CONSISTANT Characters while also being able to put them into different scenes is what most creators need.. thanks again Walt
Thanks for this Walt, really appreciate it. Hope you're doing well :)
Well, it doesn't work for me. Pinterest finds the wrong trends and not those of Pillows or others. It always comes up with nails and other things
Hey there! Have you tried the free blue print here?
jonocatliff.gumroad.com/l/ubnedk
From what you're describing, it sounds like you've entered in the 'interests' part of the API call but not the 'include_keywords' part. If you enter in a word like 'pillow' in the 'include_keywords' part, it will only ever return keywords that contain the root phrase 'pillow'.
Hope this helps and best of luck :)
Hey there! Have you tried using the free blue print I have in the description? It should work perfectly. The problem that you're mentioning seems like you're missing the include_keywords query parameter. Essentially, what the include_keywords parameter does, is it limits the results to keyphrases that include the keyword you put in. So for example, if you enter in 'pillow', the results will all contain the word pillow, such as throw pillow, couch pillow, etc
@@jonocatliff I have the purchased version
Hey there! Based on the limited info provided I'm not quite sure how to address the issue, as the blue print works for me and others downloading it. There's only two suggestions I can provide:
1. Make sure the data is being passed correctly from the Google Sheet into the Pinterest API call, and the 'interests' and 'include_keywords' is being mapped properly. If it's not, you will encounter the error you're receiving
2. Make sure that the 'include_keywords' is structured properly, otherwise you'll encounter this issue.
Perhaps, you can try re-downloading the original file again, and trying again. I've personally spend dozens of hours trying to solve things in the past only to realize much later that I was super close to the solution. APIs are not easy, and the slightest change in spelling or syntax will throw an error.
I wish you the best of luck, you've got this :)
Only nails is displayed
Hey there, thanks for the comment. If you're not getting the right keywords to display in the Pinterest module (19:20 timestamp), this would be because the "include_keywords" query parameter isn't working properly. Here's what I'd do:
1. Make sure that you have another query parameter set up, like I do at 19:20, with "include_keywords" being the key, and "pillow" being the value. Just hardcode it for the first run and see if it returns anything
2. Then you'll want to make sure it's dynamic with the value being from the spreadsheet. You'll want to make sure you're referencing the right column from the spreadsheet, and you'll also need to check the input into that Pinterest module. Is it actually receiving the keyword from the Google Sheet, or is it not working properly? Chances are, it's one of these two issues
3. You can download my blue prints in the description for free and use that, it should work out of the box
Hope this helps! Best of luck :)
Despite signing up for the blueprint, I can't download it
Hmmm, I've never heard of this happening before. I would try an incognito tab, or another browser (firefox, safari, google chrome), and maybe restart your computer. Lastly, maybe gumroad had downtime. Hope this helps!