Authentication

Get SSO Token

GET
/sso/{provider}

Generate a token for the specified third-party service.

Authorization

authCookie
auth<token>

Auth Token via Cookie

In: cookie

Path Parameters

provider*string

The third-party service to mint a token for.

Value in"canny" | "furality"

Response Body

application/json

application/json

application/json

curl -X GET "https://api.vrchat.cloud/api/1/sso/canny"
{
  "token": "string"
}
{
  "error": {
    "message": "\"That is not a supported SSO provider.\"",
    "status_code": 400
  }
}
{
  "error": {
    "message": "\"Missing Credentials\"",
    "status_code": 401
  }
}