Benim Facebook uygulaması bir http yazı ile kullanıcı duvara bir hikaye yayınlar:
$args = array('access_token' => $ACCESS_TOKEN,
'message' => 'testing message',
'picture' => $appin_logo,
'link' => $appin_canvas_url,
'name' => $appin_name,
'caption' => $post_score,
'description' => $post_rfs,
);
$ch = curl_init(); $url = 'https://graph.facebook.com/me/feed'; 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); curl_close($ch);
Yani tek bir şey hariç, tüm çalışıyor: $ post_rfs bir dizidir. Ben her değer yani sonra bir virgül ile düzgün bir şekilde çıkış değerlerini, isterim. Ne yapmalıyım?
Şimdiden teşekkürler.