I need help. You need a "Bearer Token" to call functions, but unfortunately I can't find instructions on how to generate it from Watson Assistant.
Would anyone please have a guide or an example?
Thank you in advance for your help.
Related
Google OAuth2.0 api login_hint not working.
I already read Use login_hint to pre-fill email box for Google oAuth2.
But it does not work.
You can try below link in Chrome or IE. Thanks.
https://accounts.google.com/o/oauth2/auth?scope=https%3a%2f%2fwww.googleapis.com%2fauth%2fyoutube+https%3a%2f%2fwww.googleapis.com%2fauth%2fyoutube.force-ssl+https%3a%2f%2fwww.googleapis.com%2fauth%2fyoutube.readonly+https%3a%2f%2fwww.googleapis.com%2fauth%2fyoutubepartner+https%3a%2f%2fwww.googleapis.com%2fauth%2fyoutubepartner-channel-audit&redirect_uri=urn%3aietf%3awg%3aoauth%3a2.0%3aoob&response_type=code&client_id=212374846644-1t0rrjglnumal7mgmlupor0dtrrtq8df.apps.googleusercontent.com&login_hint=aabb#test.com
I have used the https://www.google.com/accounts/ClientLogin url to access the google docs in these i can successfully login and am getting the Authorisation token .Can any one please help me to download all the documents using these authorisation token in Google docs.
Thanks
Yes, what is it and where does it go? I see examples like:
For example, the following example shows the request and the collection returned in the response:
GET https://www.googleapis.com/analytics/v3/management/accounts
Authorization: /* YOUR_OAUTH_ACCESS_TOKEN */
From http://code.google.com/intl/es-ES/apis/analytics/docs/mgmt/v3/mgmtRest.html
I'm completely lost here! How am I supposed to input the access token there? And what is it? My google API password?
Take a look here for more information on using OAuth with Google services.
Update: this article provides step-by-step instructions for calling GA API.
You have to exchange the code for the access token OR, if you are trying to get it, the refresh token.
Then you call the google api of choice with either the access token or the refresh token.
See the following tutorials:
Authenticating with OAuth 2.0 for Google API Access with PHP
Google API Requests with OAuth 2.0 Access Token
Google API Offline Access Using OAuth 2.0 Refresh Token
i need to get my facebook notifications. So i find this: http://developers.facebook.com/tools/explorer/?method=GET&path=me%2Fnotifications
if i understand well i need to get a token and go to https://graph.facebook.com/me/notifications/ to get an array of all my notifications.
But i can't understand how i can get a corrent token.
Someone can help me? :)
You need to authenticate using Facebook Connect first.
This is probably where you should start reading.
http://developers.facebook.com/docs/authentication/
i want to get oauth_request_token for my application but when i request for the page of request_token in twitter it is giving me error that "failed to validate to oauth signature and token".
Please help me in solving this problem
using oauth in objective-c is no minor accomplishment. my advice would be to take a look at oathconsumer and its tutorial. I've used it successfully for oauth and xauth. You may also want to look around for existing twitter oauth obj-c libraries on github and googlecode.