Agent_Spock
Agent_Spock

Reputation: 1177

Google Drive Authentication URL

i cannot understand what to fill in this autherization redirect URL and what dows it do. Can you help me out?

https://www.dropbox.com/s/vlg7129slz7fmfx/Google%20Drive%20Redirect%20URI.png

Upvotes: 0

Views: 1535

Answers (2)

Jai
Jai

Reputation: 41

Since I couldn't add a comment because of low reputation, I have listed as an answer to your comment for- urn:ietf:wg:oauth:2.0:oob

Note: In some cases, although it is possible to listen though localhost, other software (such as a Windows firewall) prevents delivery of the message without significant client configuration.

urn:ietf:wg:oauth:2.0:oob

This value signals to the Google Authorization Server that the authorization code should be returned in the title bar of the browser. This is useful when the client (such as a Windows application) cannot listen on an HTTP port without significant client configuration.

When you use this value, your application can then detect that the page has loaded, and can read the title of the HTML page to obtain the authorization code. It is then up to your application to close the browser window if you want to ensure that the user never sees the page that contains the authorization code. The mechanism for doing this varies from platform to platform.

Upvotes: 1

Fabian Tschachtli
Fabian Tschachtli

Reputation: 361

You will find all you need to know here: https://developers.google.com/accounts/docs/OAuth2InstalledApp#choosingredirecturi

Upvotes: 1

Related Questions