この文章は Salesforce 機械翻訳システムを使用して翻訳されました。詳細はこちらをご参照ください。
英語に切り替える
Clouds with binary code floating aboveCloud with binary code floating above

No Results

Search Tips:

  • Please consider misspellings
  • Try different search keywords

Post サービス

Post サービスを使用すると、投稿へのユーザの割り当て、投稿に対するエンゲージメント種別の設定、投稿へのタグの追加などの操作を実行できます。

投稿の詳細を取得する

コールは、30 秒以下の間隔で実行できます。

コンテンツ、タイトル、著者、公開日など、投稿の詳細を取得します。

1GET /post
パラメータ 説明
auth_token HeaderParam 必須。API で認証から返されるトークンが含まれる要求ヘッダー。
auth_appkey HeaderParam 必須。アカウント固有のアプリケーションキー。
url PathParam 投稿の URL。

1http://api.radian6.com/socialcloud/v1/post?url=http://twitter.com
2/username/statuses/13...4

要求ヘッダー

1GET /socialcloud/v1/post?url 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<?xml version="1.0" encoding="iso-8859-1"?>
2<PostDetails>
3    <blogPost>
4        <Post>
5            <postId>12....</postId>
6            <title>
7                <![CDATA[Tweet from username (r6ts) ]]>
8            </title>
9            <author>
10                <![CDATA[username]]>
11            </author>
12            <content>
13                <![CDATA[]]>
14            </content>
15            <publishedDate>1321898901000</publishedDate>
16            <link>
17                <![CDATA[http://twitter.com/username/statuses/13.....3]]>
18            </link>
19            <providerId>10</providerId>
20            <mediaTypeId>1</mediaTypeId>
21            <languageId>1</languageId>
22            <regionId>235</regionId>
23            <postStatusId>0</postStatusId>
24        </Post>
25    </blogPost>
26    <blog>
27        <blogId>44....7</blogId>
28        <title>
29            <![CDATA[Twitter / username]]>
30        </title>
31        <feed>
32            <![CDATA[http://twitter.com/statuses/user_timeline/username.atom]]>
33        </feed>
34        <link>
35            <![CDATA[http://twitter.com/username]]>
36        </link>
37        <languageId>1</languageId>
38        <languageAccuracy>0.99</languageAccuracy>
39    </blog>
40</PostDetails>