file get contents again not working alternative

前端 未结 2 492
北海茫月
北海茫月 2021-01-26 14:18

I tried the curl as the filegetcontents now working in php can any one give me the solution so solve it using curl here is the code

$userData = json_decode(file_         


        
2条回答
  •  一生所求
    2021-01-26 14:28

    How about this:

    $cFb = curl_init(
        'https://graph.facebook.com/me?access_token='.$token.'&fields=name,id'
    );
    curl_setopt($cFb, CURLOPT_RETURNTRANSFER, true);
    
    $userData = json_decode(curl_exec($cFb), true);
    
    curl_close($cFb);
    
    print($userData['id']).'
    ';

    Although, as suggested by Abhik Chakraborty in the comments, it's probably worth looking into using the official Facebook PHP SDK. The SDK uses curl so it should work in your hosting environment.

提交回复
热议问题