個人でもGraph APIが利用できるようになったみたいなのでテスト。
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分なので、リフレッシュトークンで再発行する必要がある。