Gee ID OAuth 2.0 API
    • OAuth2
      • 用户授权页
        GET
      • 使用授权码换取 Access Token
        POST
    • User
      • 获取用户信息
        GET
    • 数据模型
      • TokenRequest
      • TokenResponse
      • UserInfoEnvelope
      • UserInfoData
      • UserInfoErrorEnvelope
      • ErrorBody

    TokenRequest

    {
        "grant_type": "authorization_code",
        "code": "string",
        "client_id": "string",
        "client_secret": "string",
        "redirect_uri": "http://example.com"
    }
    Built with