No Results
Search Tips:
- Please consider misspellings
- Try different search keywords
User サービス
User サービスを使用すると、ユーザ詳細とそのダッシュボードの取得などの操作を実行できます。
ユーザを取得する
コールは、30 秒以下の間隔で実行できます。
要求を行っているユーザの基本情報を返します。
1GET /user| パラメータ | 型 | 説明 |
|---|---|---|
| auth_token | HeaderParam | 必須。API で認証から返されるトークンが含まれる要求ヘッダー。 |
| auth_appkey | HeaderParam | 必須。アカウント固有のアプリケーションキー。 |
例
1http://api.radian6.com/socialcloud/v1/user要求ヘッダー
1GET /socialcloud/v1/smm/user HTTP/1.1
2Host: api.radian6.com
3auth_token: NotARealToken
4auth_appkey: NotARealAppKey応答ヘッダー
1HTTP/1.1 200 OK
2Date: Thu, 29 Sep 2011 17:17:16 GMT
3Content-Type: application/xml
4Content-Length: 705
5Keep-Alive: timeout=15, max=100
6Connection: Keep-Alive応答
1<user>
2 <userId>538</userId>
3 <clientId>1</clientId>
4 <displayName>
5 <![CDATA[John Doe]]>
6 </displayName>
7 <emailAddress>John.Doe@example.com</emailAddress>
8 <timezone>GMT</timezone>
9</user>