axe
axe

Reputation: 2371

Using google drive API from C#

I need to work with Google Drive from my UI .NET application. I found that Google uses OAuth 2.0 for authentication. The problem is as far as I understood OAuth sends your token back using HTTP callback, but I don't have a web-server running, it's not a web application at all, does it mean I can't use Google Drive SDK from Windows Forms/Windows Console applications?

Upvotes: 3

Views: 3385

Answers (1)

Karel Frajták
Karel Frajták

Reputation: 4489

The token will be returned to you in a web response to your request for web token. No web server is required.

See these examples and resources

Upvotes: 3

Related Questions