Birden cURL istekleri yürütülüyor

0 Cevap php

Ben sırayla birden fazla kıvırmak istekleri yürütmek için çalışıyorum, ama gerçekten herhangi bir şans sahip değilim, burada, bugüne kadar benim kodudur

//upload photo
$file= 'photo.jpg';
$args = array(
    'message' => 'Photo from application',
);
$args[basename($file)] = '@' . realpath($file);

$ch = curl_init();
$url = 'https://graph.facebook.com/me/photos?access_token='.$token;
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $args);
$data = curl_exec($ch);

$args_two = array(
    'message' => 'This is a test post',
);

$ch_two = curl_init();
$url_two = 'https://graph.facebook.com/me/feed?access_token='.$token;
curl_setopt($ch_two, CURLOPT_URL, $url_two);
curl_setopt($ch_two, CURLOPT_HEADER, false);
curl_setopt($ch_two, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch_two, CURLOPT_POST, true);
curl_setopt($ch_two, CURLOPT_POSTFIELDS, $args_two);
$data_two = curl_exec($ch_two);

Bu dosya çağrılır ve sonra iki istekleri birbiri ardına idam edilmelidir, ama şu anda sadece çalışma değil.

Önceden teşekkürler!

0 Cevap