Instagram如何在php中验证X-Hub-Signature

前端之家收集整理的这篇文章主要介绍了Instagram如何在php中验证X-Hub-Signature前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
什么是在 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

原文链接:https://www.f2er.com/php/135481.html

猜你在找的PHP相关文章