mixi Graph API の認証

2011/02/12

個人でもGraph APIが利用できるようになったみたいなのでテスト。

mixi developer仕様

mixi developer center 認証認可手順

Authorization Codeの発行

Type : GET URI:https://mixi.jp/connect_authorize.pl パラメータ: client_id=Consumer Key response_type=code scope=r_profile r_voice

scopeは各APIを許可する為のパラメータ 例では、r_profile、r_voiceを指定しており「People API」「Voice API」の読み込み権限が利用可能

アクセストークン、リフレッシュトークンの発行

Type : POST URI:https://secure.mixi-platform.com/2/token パラメータ: grant_type=authorization_code client_id=Consumer Key client_secret=Consumer Secret code=Consumer Secret redirect_uri=アクセストークン response_type=code scope=r_profile r_voice

アクセストークンの有効期限は15分なので、リフレッシュトークンで再発行する必要がある。