$json = file_get_contents('url_here');
$obj = json_decode($json);
echo $obj->access_token;
এটি কাজ করার file_get_contents
জন্য, allow_url_fopen
এটি সক্ষম হওয়া দরকার । এটি অন্তর্ভুক্ত করে রানটাইমে করা যেতে পারে:
ini_set("allow_url_fopen", 1);
আপনি curl
ইউআরএল পেতে ব্যবহার করতে পারেন। কার্ল ব্যবহার করতে, আপনি এখানে পাওয়া উদাহরণটি ব্যবহার করতে পারেন :
$ch = curl_init();
// IMPORTANT: the below line is a security risk, read https://paragonie.com/blog/2017/10/certainty-automated-cacert-pem-management-for-php-software
// in most cases, you should set it to true
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_URL, 'url_here');
$result = curl_exec($ch);
curl_close($ch);
$obj = json_decode($result);
echo $obj->access_token;
json_decode($your_string)
কৌশলটি করা উচিত