New to Vue3 - What is after authentication? #26
-
It took me a few weeks to eventually work out how to get this to work. I am a Vue newbie. But, can somebody please help or explain how do I now use the DataAPI's? What I have in mind is to query YopuTube API. Just get subscribers count. So the examples show using GAPI?
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @ppumkin Yes, you'll want to dive into the great gapi implementation universe. I've been through what you're going for as I learned to use gapi to retrieve gmail data. I didn't spend time on it but you might found some existing packages that would do the trick for you: I imagine that requesting the Youtube API is pretty common requirement... Give it a try on npmjs.com using Youtube gapi and vue as search keywords, you may find what you're looking for. Otherwise, you can implement your own gapi access but it'd require some more efforts. If you're there to acquire some knowledge on how things are done, you'll be fine ;) It took me somewhat 5 days to set it up properly (approximately 2 hours per day for a total of 10 hours) but depending on your skillset and knowledge, it may take you less time ;) GL & HF ;) |
Beta Was this translation helpful? Give feedback.
Hi @ppumkin
Yes, you'll want to dive into the great gapi implementation universe. I've been through what you're going for as I learned to use gapi to retrieve gmail data.
I didn't spend time on it but you might found some existing packages that would do the trick for you: I imagine that requesting the Youtube API is pretty common requirement... Give it a try on npmjs.com using Youtube gapi and vue as search keywords, you may find what you're looking for.
Otherwise, you can implement your own gapi access but it'd require some more efforts. If you're there to acquire some knowledge on how things are done, you'll be fine ;)
If you get down that rabbit hole, I can share my approach:
Install v…