mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-13 08:38:43 +03:00
42 lines
1.4 KiB
Plaintext
42 lines
1.4 KiB
Plaintext
:: Test url +https://api.instagram.com/v1/users/self
|
|
::
|
|
:::: /hoon/instagram/com/sec
|
|
::
|
|
/+ oauth2
|
|
::
|
|
::::
|
|
::
|
|
|%
|
|
++ dialog-url 'https://api.instagram.com/oauth/authorize?response_type=code'
|
|
++ exchange-url 'https://api.instagram.com/oauth/access_token'
|
|
--
|
|
::
|
|
::::
|
|
::
|
|
|_ {bal/(bale:eyre keys:oauth2) tok/token:oauth2}
|
|
:: ++aut is a "standard oauth2" core, which implements the
|
|
:: most common handling of oauth2 semantics. see lib/oauth2 for more details,
|
|
:: and examples at the bottom of the file.
|
|
++ aut (~(standard oauth2 bal tok) . |=(tok/token:oauth2 +>(tok tok)))
|
|
++ filter-request
|
|
%^ out-add-query-param:aut 'access_token'
|
|
scope=~[%basic]
|
|
dialog-url
|
|
::
|
|
++ receive-auth-query-string (in-code-to-token:aut exchange-url)
|
|
++ receive-auth-response bak-save-token:aut
|
|
--
|
|
:: create a developer app on https://www.instagram.com/developer/ to get a
|
|
:: client id and secret
|
|
|
|
:: Be sure to be on https://localhost:8443, and to have registered
|
|
:: http://localhost:8443/~/ac/instagram.com/~./in as the redirect URI.
|
|
:: (If unable to change port number of ship, change the redirect URI port in %eyre)
|
|
:: |init-oauth2 |init-oauth2 /com/instagram
|
|
|
|
:: Enter this sample command to get your user information:
|
|
:: +https://api.instagram.com/v1/users/self
|
|
|
|
:: Before you receive the response, you'll have to clink on the link to
|
|
:: authenicate yourself. You should then receive the response.
|