Facebook.debug_token

You're seeing just the function debug_token, go back to Facebook module for more information.
Link to this function

debug_token(input_token, access_token)

View Source

Specs

debug_token(access_token(), access_token()) :: resp()

Returns metadata about a given access token.

This includes data such as the user for which the token was issued, whether the token is still valid, when it expires, and what permissions the app has for the given user.

This may be used to programatically debug issues with large sets of access tokens.

An app access token or an app developer's user access token for the app associated with the input_token is required to acces.

See:

Examples

iex> Facebook.debug_token("INPUT_TOKEN", "ACCESS_TOKEN")
{:ok, %{"data" => [
  %{
    "app_id": "APP_ID",
    "type": "USER",
    "application": "APP_NAME",
    "expires_at": 1352419328,
    "is_valid": true,
    "issued_at": 1347235328,
    "scopes": [
        "email",
        "publish_actions"
    ],
    "user_id": "USER_ID"
  }
]}