Python – Invalid appsecret_proof provided in the API argument Account Kit – Facebook api
In the Facebook docs they have mentioned that access_token consist of AA|facebook_app_id|app_secret https://developers.facebook.com/docs/accountkit/graphapi And the appsecret_proof is hash of access token using app secret as key appsecret_proof = hmac.new((app_secret).encode('ascii'), msg=access_token.encode('ascii'), digestmod=hashlib.sha256).hexdigest() So I am using the above generated appsecret_proof to…