PHPで検証する正しい方法は何X-Hub-Signature
ですか?
で試してみました
$xHubSignature = $request->getHeader('X-Hub-Signature');
$postdata = file_get_contents("php://input");
$body = $request->getRawBody( );
$check = sha1('mysecret'.$postdata);
しかし、それは機能しません。
PHPで検証する正しい方法は何X-Hub-Signature
ですか?
で試してみました
$xHubSignature = $request->getHeader('X-Hub-Signature');
$postdata = file_get_contents("php://input");
$body = $request->getRawBody( );
$check = sha1('mysecret'.$postdata);
しかし、それは機能しません。
hash_hmac( 'sha1', $postdata,'mysecret')
Payom Dousti のおかげで
https://groups.google.com/forum/?fromgroups=#!topic/instagram-api-developers/7nKyipJENDI