Work with OAuth without a browser?

I am a developer of a large social network.

Is there an OAuth protocol without a browser? I plan to write desktop and mobile applications that cannot use your browser to get access_token. This bothers me for the fact that I received Access_token, I do not understand how to implement it.

Give code examples if possible ...

+4
source share
1 answer

No, at least using a generic OAuth stream (also called 3-legged).

You need to open a browser so that the user can provide your application with access to protected resources.

You can use the on-off OAuth change, but it is poorly documented and maintained.

+2
source

Source: https://habr.com/ru/post/1306093/


All Articles