このエッジによりグループのフィードに写真を公開することができます。
この操作はサポートされていません。
アップロードまたはURLで写真を公開できます。
multipart/form-data
としてファイルアップロードを行って写真をキャプチャした後、source
パラメーターを使用する。
POST /v21.0/{group-id}/photos HTTP/1.1
Host: graph.facebook.com
source=%7Bimage-data%7D
/* PHP SDK v5.0.0 */
/* make the API call */
try {
// Returns a `Facebook\FacebookResponse` object
$response = $fb->post(
'/{group-id}/photos',
array (
'source' => '{image-data}',
),
'{access-token}'
);
} catch(Facebook\Exceptions\FacebookResponseException $e) {
echo 'Graph returned an error: ' . $e->getMessage();
exit;
} catch(Facebook\Exceptions\FacebookSDKException $e) {
echo 'Facebook SDK returned an error: ' . $e->getMessage();
exit;
}
$graphNode = $response->getGraphNode();
/* handle the result */
/* make the API call */
FB.api(
"/{group-id}/photos",
"POST",
{
"source": "{image-data}"
},
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);
Bundle params = new Bundle();
params.putString("source", "{image-data}");
/* make the API call */
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/{group-id}/photos",
params,
HttpMethod.POST,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
/* handle the result */
}
}
).executeAsync();
NSDictionary *params = @{
@"source": @"{image-data}",
};
/* make the API call */
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
initWithGraphPath:@"/{group-id}/photos"
parameters:params
HTTPMethod:@"POST"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id result,
NSError *error) {
// Handle the result
}];
写真のURLとurl
パラメーターを使って、インターネットから公開します。
POST /v21.0/{group-id}/photos HTTP/1.1
Host: graph.facebook.com
url=%7Bimage-url%7D
/* PHP SDK v5.0.0 */
/* make the API call */
try {
// Returns a `Facebook\FacebookResponse` object
$response = $fb->post(
'/{group-id}/photos',
array (
'url' => '{image-url}',
),
'{access-token}'
);
} catch(Facebook\Exceptions\FacebookResponseException $e) {
echo 'Graph returned an error: ' . $e->getMessage();
exit;
} catch(Facebook\Exceptions\FacebookSDKException $e) {
echo 'Facebook SDK returned an error: ' . $e->getMessage();
exit;
}
$graphNode = $response->getGraphNode();
/* handle the result */
/* make the API call */
FB.api(
"/{group-id}/photos",
"POST",
{
"url": "{image-url}"
},
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);
Bundle params = new Bundle();
params.putString("url", "{image-url}");
/* make the API call */
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/{group-id}/photos",
params,
HttpMethod.POST,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
/* handle the result */
}
}
).executeAsync();
NSDictionary *params = @{
@"url": @"{image-url}",
};
/* make the API call */
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
initWithGraphPath:@"/{group-id}/photos"
parameters:params
HTTPMethod:@"POST"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id result,
NSError *error) {
// Handle the result
}];
要件のタイプ | 説明 |
---|---|
以下のログインアクセス許可と機能を使用するには、アプリが承認されている必要があります。(クリックして展開) | |
アプリがグループにインストールされている必要があります。 | |
アプリがインストールされているグループのメンバーであるユーザーのユーザーアクセストークン。 | |
ユーザーが次のアクセス許可をアプリに付与する必要があります:
|
名前 | 説明 | 型 |
---|---|---|
| 写真の説明。フィードストーリーのステータスメッセージとして使用されます。 |
|
| 写真の説明。 |
|
| 写真をすぐに公開したくない場合は、 |
|
| フォームデータとしてエンコードされた写真。このフィールドまたは | |
| インターネットにすでにアップロードされている写真のURL。このフィールドまたは |
|
成功すると、次の情報を含む応答を受け取ります。また、このエンドポイントではリードアフターライトがサポートされるので、id
により表されるノードを戻り値の型ですぐに読み取れます。
名前 | 説明 | 型 |
---|---|---|
| 新たに作成された写真ID |
|
この操作はサポートされていません。
この操作はサポートされていません。