i got a premium account of spotify and then registered an app and then got the key file . now i want to get the plalylist and user data of any user who uses my application.
I searched around the web but did not found any way to get the user data like access_token in facebook graph api.
Any body help me
Solved, i got Plasylist.bnk from the installation directory, and its solved now. thanks all
Related
I am trying to connect to google photo in angular and been searching since last two days about google photos REST api but couldn't find any useful example.
Could somebody help me with this on how to use google photos api in angular. an example would be great if I get it working I will creating sample and put it on github or others to look at.
Another thing I am trying is to connect api without any user interaction. I have tried playgrounds but its prompting to authorize access as well. Idea is to build ionic app that can connect to my google photos without needing me to authenticate access to it with my id and secret.
my app would be in angular(ionic) or java(android) so would prefer example (if any) in those platform but ok with dotnet or php as well. Won't be able to use library in dotnet or php.
Thanks
Bhavesh
I was trying to build a web app that uses spotify api to get the song/artist name by a track id(spotify), my intention was so everyone could use the web app, not only spotify users.
But I guess it's not possible to use the API without logging in the user ?
Can somebody confirm or maybe point me to a solution ?
According to the documentation you can register your application and use your secret to retrieve any non user-specific information.
See this page.
I have a bunch of Google accounts each with Youtube videos. What I want to achieve is a Google App Script which can read user credentials info from a google spreadsheet, get him login using his credentials, access the youtube video url which we have and delete it.
Is this possible? i.e. Getting login into Gmail using Google App Script. If so then please provide a reference.
Thanks.
YouTube.Videos.remove('Your_Video_Id_Here');
Did you look at the reference material?
You can get the email of the active user with:
Session.getActiveUser().getEmail();
but you shouldn't need that if the person calls the function themselves via a menu/trigger/etc
I would like to allow admins of my page to upload video on single YouTube account. I find a kind of solution, but I have a problem. I've already got ClientID, ClientSecret and RefreshToken. Unfortunately, I got stuck. There is an error, wchich says
'BuildService' does not exist in the current context
although I have installed YouTube Data API v3 from nuget. Does anyone have any similiar problem? Is it any simplest way to make uploading possible?
Im using the Google PHP API Client http://code.google.com/p/google-api-php-client/ to retrieve data from the google API.
Logging in thru OAuth2 and fetch user information works like a charm, but when I'm attempting to access the goole analytics api i get this 403 code error every time. Hundreds of users with the same problem forgot to activate the Google Analytics API in the service settings, or simply provided incorrect credentials (client_id & client_secret). I've tried to enable/disable the Google Analytics multiple times, and logging in/out from my google accounts, but no result.
Anyone that has any pointers for me?
(Remember, the OAuth procedure works, since I'm getting both an access_token and refresh_token)
I'm using the simple.php example in the class examples folder...
I'm working on Drive myself and understand the issue. I've been having some troubles understanding Google and their PHP api somewhat. I've finally got it to work with some clarification of examples found around the internet.
Your problem sounds like you didn't set your scope to Google analytics but, please be clear in the steps you've taken as well as the code you've tried using.
The error could be as simple as forgetting this line in your oAuth callback file:
$client->addScope(Google_Service_Analytics::ANALYTICS);
To something complex as understanding if you need a full paid account to access information from Google about your Analytics (not included as free like Google+ and Google drive).