httr (version 0.2)

oauth_endpoint: Describe an OAuth endpoint.

Description

Describe an OAuth endpoint.

Usage

oauth_endpoint(request = NULL, authorize, access,
    base_url = NULL)

Arguments

request
url used to request initial (unauthenticated) token. If using OAuth, leave as NULL.
authorize
url to send client to for authorisation
access
url used to exchange unauthenticated for authenticated token.
base_url
option url to use as base for request, authorize and access urls.

See Also

Other OAuth: oauth1.0_token, oauth2.0_token, oauth_app, sign_oauth1.0, sign_oauth2.0

Examples

Run this code
linkedin <- oauth_endpoint("requestToken", "authorize", "accessToken",
 base_url = "https://api.linkedin.com/uas/oauth/")
github <- oauth_endpoint(NULL, "authorize", "access_token",
  base_url = "https://github.com/login/oauth")
facebook <- oauth_endpoint(
  authorize = "https://www.facebook.com/dialog/oauth",
  access = "https://graph.facebook.com/oauth/access_token")

Run the code above in your browser using DataCamp Workspace