POST login/apps/:app id/sign ins/:provider

From Social ID Developers
Revision as of 20:12, 26 February 2020 by Ivan.filho (Talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Contents

Description

Creates a new sign_in given a provider credential.

Use this API when you already have your own authentication mecanism for the given provider. With this API you can keep on using all Social Login APIs and plugins and populating your Marketing Database with new users.

Important: if you use the user token in any Javascript API you will have to get a the new one generated by this operation using GET login/users/:user_id. See Social Login Tokens for more details.

Resource URL

  POST https://api.socialidnow.com/v1/marketing/login/apps/:app_id/sign_ins/:provider

Parameters

URL Parameters

app_id required Social Login App identifier.
provider required Social provider. Supported providers are: "facebook", "gplus", "linkedin", "twitter", "instagram" and "apple".

JSON Parameters

access_token required 1 User access token.
access_secret required 2 User access secret.
id_token required 3 User ID Token.

1 Required by OAuth 1.0 and OAuth 2.0 providers. It's optional for OIDC providers ("apple").

2 Required by OAuth 1.0 providers (twitter). Must not be informed for OAuth 2.0 and OIDC providers (facebook, gplus, linkedin, instagram, apple).

3 Required by OIDC providers (apple). Must not be informed for OAuth 1.0 and OAuth 2.0 providers (facebook, gplus, linkedin, twitter, instagram).

Authentication

This API requires Marketing Account authentication. See Authentication.

Response

Same as GET login/sign_ins/:id.

Examples

Request

For OAuth 1.0 providers: (twitter)

 curl -iX POST 'https://api.socialidnow.com/v1/marketing/login/apps/:app_id/sign_ins/twitter' \
        -d '{"access_token":"<access_token>","access_secret":"<access_secret>"}' \
        -H 'Content-type:application/json' \
        --user <api_id>:<api_secret>

For OAuth 2.0 providers: (facebook, gplus, linkedin and instagram)

 curl -iX POST 'https://api.socialidnow.com/v1/marketing/login/apps/:app_id/sign_ins/facebook' \
        -d '{"access_token":"<access_token>"}' \
        -H 'Content-type:application/json' \
        --user <api_id>:<api_secret>

For OIDC providers: (apple)

 curl -iX POST 'https://api.socialidnow.com/v1/marketing/login/apps/:app_id/sign_ins/apple' \
        -d '{"id_token":"<id_token>"}' \
        -H 'Content-type:application/json' \
        --user <api_id>:<api_secret>

Response

Response Headers

HTTP/1.1 201 Created
Location: https://api.socialidnow.com/v1/marketing/login/sign_ins/4742
Status: 201

Response Body

{
  "connection":"https://api.socialidnow.com/v1/marketing/login/connections/a4b4cee9c05774d8b6e2427818f8e7866363eff0ea6c69edec8ac32dd0b71452",
  "connection_id":"a4b4cee9c05774d8b6e2427818f8e7866363eff0ea6c69edec8ac32dd0b71452",
  "login_token":"184cbcf30260b81d061e1f3903bf372089b48c7f5c1fd90649e14b6f17ed6a56",
  "user_id":340
}
Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox