what are you blanking out in the links @timestamp 2:50 and @6:24? i just need to find my own whatever that is... but if you can point me in the right direction that would be a big blessing! thank you for the videos!
Hello, can you tell me the time where I find the part of the video where you create the youtube-comments-api element. I want to create it and then select it.
@@NoCodeAcademy At minute 15 and 27 seconds you select youtube-comments-api and then in custom state the option to select video_id appears. I want to do the same but it doesn't appear.
@@fernandomendez969 oh gotcha, the "youtube-comments-api" is the name my page in bubble and "video_id" is just a custom state I'm using to store the data that comes back from the API so I can then use it on the page. If you're not familiar with custom states, check out ruclips.net/video/ydqXrIgTekE/видео.html.
Do you have a video where you explain how to obtain the authorization code and dynamic access_token. And any other video where you explain the OAuth2 user-agent authentication flow? I understand that this flow does the work for us when configured manually, as you explain.
I'm pretty certain you cannot get the transcript since they don't make it available in the API. But I'd love to be proved wrong on that one, check the RUclips API documentation here developers.google.com/youtube/v3/docs/.
Hey thanks for your comment. First, Bubble is a great solution if you want to build what sounds like a SaaS app that offers summarization of RUclips videos. To directly address converting yt video links to summary notes, you need the transcript to do send to AI to do that. If you can get the transcript then everything else you're thinking up is possible. How to get the transcript? I don't know frankly but here is how you find out -- use the setup show up until the 9:25 mark of this but do it for the developers.google.com/youtube/v3/docs/caption endpoint and see what it gives back. The thing to see is does RUclips's API allow you to access the captions (the transcript basically) for videos that are not in your account but all publicly available videos? I don't know, but you could (a) go and try yourself or (b) you could pay someone who has experience in this area to help you. Good luck.
Hello and amazing video. I am trying to get the RUclips search integrated with my bubble app. But the RUclips scope for the search Api variation is non existent. Can you please point me in the right direction to get this Intergrated into my application?
No, because these APIs are huge -- meaning, there are so many options they offer for providing data -- it's hard to make one tutorial that fits all. But good news is each API has the same fundamental steps of authentication + making a call to an endpoint and GPT 4o is pretty decent at helping navigate those two steps.
Thanks Daniel. Yes totally -- in console.cloud.google.com enable the Business Profile Performance API and you just change the API endpoint and parameters to what's over in developers.google.com/my-business/content/review-data. If you do set it up, let me know how it goes? Would love to hear the success story!
Great content! great work! this is exactly what I wanted, I am now able to get comments in a repeating group by entering the video ID, can you please tell me how to extract a video's views and likes, is it similar to what we've done with comments?
im trying this with youtube Analytics API and the response i get is an array without objects name, is it a bad api call or something else? { "kind": "youtubeAnalytics#resultTable", "columnHeaders": [ { "name": "day", "columnType": "DIMENSION", "dataType": "STRING" }, { "name": "views", "columnType": "METRIC", "dataType": "INTEGER" } ], "rows": [ [ "2020-08-05", 3 ], [ "2020-08-06", 27 ],
Hi Hamza, did you find a solution? If not, try the below: If you encounter an error message stating "unable to resolve DNS for OAuth 2" when connecting to Google's API using Bubble.io's API connector, it suggests an issue with the DNS resolution specifically within the Bubble.io platform. Here are a few possible causes for this error in the context of Bubble.io: Bubble.io DNS configuration issue: It's possible that the DNS settings within Bubble.io are misconfigured or experiencing problems, leading to the failure of DNS resolution for the OAuth 2 process. Network connectivity problem within Bubble.io: If Bubble.io's platform is experiencing network connectivity issues, such as DNS server problems or restrictions on outbound connections, it can result in the DNS resolution failure for OAuth 2. To troubleshoot this issue within Bubble.io, you can try the following steps: Check Bubble.io platform status: Visit Bubble.io's status page or their community forum to see if there are any reported issues or maintenance activities that could be affecting DNS resolution or API connectivity. Verify API Connector settings: Double-check the settings in the API Connector plugin within Bubble.io. Ensure that you have entered the correct API endpoint, URL, or configuration required to connect to Google's API. Test other API connectors: Try using other API connectors within Bubble.io to see if the DNS resolution issue is specific to the Google API or affecting other API connections as well. This can help narrow down the cause of the problem. Reach out to Bubble.io support: If the issue persists, contact Bubble.io's support team for assistance. They can provide specific guidance and investigate the problem further within the context of their platform. Remember that the steps outlined above are specific to troubleshooting within the Bubble.io platform. If you are encountering similar DNS resolution issues with other services or applications outside of Bubble.io, you may need to consider general DNS troubleshooting steps or consult the documentation and support channels of the respective services involved. Good luck.
This is the video I've looking for!! thank you!!
10:56 go to design(front)
16:00 convert jsonfile into bubble database
Glad it helped!
what are you blanking out in the links @timestamp 2:50 and @6:24? i just need to find my own whatever that is... but if you can point me in the right direction that would be a big blessing! thank you for the videos!
It's the domain of the app it is on. This app uses a custom domain, you'll want to use either your custom domain or the sub-domain on bubbleapps.io.
Hello, can you tell me the time where I find the part of the video where you create the youtube-comments-api element. I want to create it and then select it.
Hi, which part do you mean for the youtube-comments-api element?
@@NoCodeAcademy At minute 15 and 27 seconds you select youtube-comments-api and then in custom state the option to select video_id appears. I want to do the same but it doesn't appear.
@@fernandomendez969 oh gotcha, the "youtube-comments-api" is the name my page in bubble and "video_id" is just a custom state I'm using to store the data that comes back from the API so I can then use it on the page. If you're not familiar with custom states, check out ruclips.net/video/ydqXrIgTekE/видео.html.
@@NoCodeAcademy Perfect, thank you very much. I will check it.
Do you have a video where you explain how to obtain the authorization code and dynamic access_token.
And any other video where you explain the OAuth2 user-agent authentication flow? I understand that this flow does the work for us when configured manually, as you explain.
Hey good question. Yes, it's this playlist ruclips.net/video/1XUu7-yIoUY/видео.html.
Thank you so much
Nice! Q: Is it possible to retrieve the youtube transcript from the same API call you're showcasing?
I'm pretty certain you cannot get the transcript since they don't make it available in the API. But I'd love to be proved wrong on that one, check the RUclips API documentation here developers.google.com/youtube/v3/docs/.
I want to create a bubble app that can convert yt video links into summary notes. is it possible with ai?
Hey thanks for your comment. First, Bubble is a great solution if you want to build what sounds like a SaaS app that offers summarization of RUclips videos.
To directly address converting yt video links to summary notes, you need the transcript to do send to AI to do that. If you can get the transcript then everything else you're thinking up is possible.
How to get the transcript? I don't know frankly but here is how you find out -- use the setup show up until the 9:25 mark of this but do it for the developers.google.com/youtube/v3/docs/caption endpoint and see what it gives back.
The thing to see is does RUclips's API allow you to access the captions (the transcript basically) for videos that are not in your account but all publicly available videos? I don't know, but you could (a) go and try yourself or (b) you could pay someone who has experience in this area to help you. Good luck.
@@NoCodeAcademythank you so much for the guidance
Hello and amazing video. I am trying to get the RUclips search integrated with my bubble app. But the RUclips scope for the search Api variation is non existent. Can you please point me in the right direction to get this Intergrated into my application?
Hey thanks for kind words, did you find it? If not, check developers.google.com/youtube/v3/docs/search.
Do you have meta and tiktok api?
No, because these APIs are huge -- meaning, there are so many options they offer for providing data -- it's hard to make one tutorial that fits all. But good news is each API has the same fundamental steps of authentication + making a call to an endpoint and GPT 4o is pretty decent at helping navigate those two steps.
Love your video, do you think it is posible to do the same with google reviews?
Thanks Daniel. Yes totally -- in console.cloud.google.com enable the Business Profile Performance API and you just change the API endpoint and parameters to what's over in developers.google.com/my-business/content/review-data. If you do set it up, let me know how it goes? Would love to hear the success story!
Hey sertrader! Have you succeed with doing it on google reviews?
Great content! great work! this is exactly what I wanted, I am now able to get comments in a repeating group by entering the video ID, can you please tell me how to extract a video's views and likes, is it similar to what we've done with comments?
Hi, check ruclips.net/video/J8UVtcG8v5Y/видео.html for that
like your video 💪
im trying this with youtube Analytics API and the response i get is an array without objects name, is it a bad api call or something else?
{
"kind": "youtubeAnalytics#resultTable",
"columnHeaders": [
{
"name": "day",
"columnType": "DIMENSION",
"dataType": "STRING"
},
{
"name": "views",
"columnType": "METRIC",
"dataType": "INTEGER"
}
],
"rows": [
[
"2020-08-05",
3
],
[
"2020-08-06",
27
],
sir ithis error showsa when i initialize the call unable to resolve dns for oauth 2 if you any thing please guide
Hi Hamza, did you find a solution? If not, try the below:
If you encounter an error message stating "unable to resolve DNS for OAuth 2" when connecting to Google's API using Bubble.io's API connector, it suggests an issue with the DNS resolution specifically within the Bubble.io platform. Here are a few possible causes for this error in the context of Bubble.io:
Bubble.io DNS configuration issue: It's possible that the DNS settings within Bubble.io are misconfigured or experiencing problems, leading to the failure of DNS resolution for the OAuth 2 process.
Network connectivity problem within Bubble.io: If Bubble.io's platform is experiencing network connectivity issues, such as DNS server problems or restrictions on outbound connections, it can result in the DNS resolution failure for OAuth 2.
To troubleshoot this issue within Bubble.io, you can try the following steps:
Check Bubble.io platform status: Visit Bubble.io's status page or their community forum to see if there are any reported issues or maintenance activities that could be affecting DNS resolution or API connectivity.
Verify API Connector settings: Double-check the settings in the API Connector plugin within Bubble.io. Ensure that you have entered the correct API endpoint, URL, or configuration required to connect to Google's API.
Test other API connectors: Try using other API connectors within Bubble.io to see if the DNS resolution issue is specific to the Google API or affecting other API connections as well. This can help narrow down the cause of the problem.
Reach out to Bubble.io support: If the issue persists, contact Bubble.io's support team for assistance. They can provide specific guidance and investigate the problem further within the context of their platform.
Remember that the steps outlined above are specific to troubleshooting within the Bubble.io platform. If you are encountering similar DNS resolution issues with other services or applications outside of Bubble.io, you may need to consider general DNS troubleshooting steps or consult the documentation and support channels of the respective services involved.
Good luck.