uPrism.io
HomePlan 안내Blog
1.0.0-Ko
1.0.0-Ko
  • uPrism API 개발자 가이드 문서
  • 사용 플로우
  • 인증
    • Access Token
    • Authentication
  • Sample
    • 채팅 프로그램
  • REST API
    • Conference
      • Get Conference List
      • Join Conference
      • Create Conference
      • Update Conference
      • Delete Conference
    • Sub User
      • Get Sub User List
      • Create Sub User
      • Update Sub User
      • Delete Sub User
    • Address
      • Get Address List
      • Create Address
      • Update Address
      • Delete Address
      • Get Address Group List
      • Create Address Group
      • Update Address Group
      • Delete Address Group
    • Invite
      • Send Invite Mail
    • Logs
      • Get Conference Logs
    • Statistics
      • Get Conference Statistics
      • Get User Conference Statistics
    • Recording
      • Get Recording List(All)
      • Get Recording List
      • Download Recording File (FileName)
      • Download Recording File (SeqNo)
      • Delete Recording File
    • Organization
      • Post Organization
  • SDK
Powered by GitBook
On this page

Was this helpful?

  1. 인증

Access Token

관리자에서 발급받은 key, secret을 통해 api를 요청할 수 있는 token을 발급

Get Token

POST https://uprism.io:30443/oauth/token

OAuth2 인증 방식을 따라 토큰을 발급하는 API Client Credentails 방식을 이용하여 토큰을 발급합니다.

Headers

Name
Type
Description

Authorization

string

"Basic " + base64(clientKey:clientSecret)

Request Body

Name
Type
Description

grant_type

string

client_credentials

{
    "access_token": "1a2b3c4d-5e6f-7g8h-9i0j-1k2l3m4n5o6p",
    "token_type": "bearer",
    "expires_in": 3599,
    "scope": "read write"
}
{
    "timestamp": 1563946941375,
    "status": 401,
    "error": "Unauthorized",
    "message": "Bad credentials",
    "path": "/oauth/token"
}

Previous인증NextAuthentication

Last updated 5 years ago

Was this helpful?