0

ページに送信されたメッセージに返信する方法を知っていますか?

HTTP POST to /CONVERSATION_ID/messages次のパラメーターを指定してを発行することにより、ユーザーのメッセージに返信できます。

会話IDは次のようになりますt_id.216477638451347

私はGETaccesstoken を送信してCONVERSATION_IDThread IDますPOSTmessage

しかし、それは投稿されません。拡張許可はありますか? 一しかありませんread_page_inbox

4

1 に答える 1

0

すみません、アカウントを間違えて返信してしまいました!!

コードは次のとおりです。

<?php
include("config.php");
post("Test",$at);
$id = "550773858289457";
    $url = "https://graph.facebook.com/$id/messages?access_token=$at";
    $ch = curl_init();
    $attachment =  array('message'   => 'description here'
                    );

    curl_setopt($ch, CURLOPT_URL,$url);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
    curl_setopt($ch, CURLOPT_POST, true);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $attachment);
    $result= curl_exec($ch);

    curl_close ($ch);
?>

そして、次のように返信します。

{"id":"302300649895651_312334605558922"}{"error":{"message":"Unsupported post request.","type":"GraphMethodException","code":100}}

ありがとうございました!

于 2013-03-24T12:54:59.490 に答える