First of all Sorry for my bad english
Iam developing a wordpress theme for facebook timelinecover.When user click set us timelinecover,the url of the image posted to the facebook application for sharing it to wall.I dont know how to send the image url to my facebook application.The form is hosted in my website,the app hosted separately.When i send the form data to the app,if the user is not loggined on facebook or not authenticated the app,when the user authorise and allow the permission,the submitted form data become lost.If the user is already authenticated and logged in,the form data passed to the app successfully
N:B : the form is hosted on my website,when the user submit the form,i want to pass the data(timeline image url) to my facebook app.
Here is my code
html form
<form enctype="application/x-www-form-urlencoded" method="get" action="index.php"
<input type="hidden"value="http://security.singlelinelogics.com/wpcontent/uploads/2012/12/aDs-164.jpg"name="cover">
<input type="submit">
Index.php
<?php
require_once("config1.php");
$cover = $_REQUEST['cover'];
$uid = $facebook->getUser();
$fbuser = $facebook->api('/me');
$facebook->setFileUploadSupport(true);
$photo = $facebook->api("/{$ALBUM_ID}/photos", "post", array(
'message' => 'Photo caption',
'url' => "$cover"
));
$url = "https://www.facebook.com/profile.php?preview_cover=".$photo['id'];
?>
Config.php
<?php
require_once("fb/facebook.php");
$config = array();
$config['appId'] = '450616291663048';
$config['secret'] = '088834ee0ffd3dbb332747e087b95e99';
$facebook = new Facebook($config);
$redirecturi = "http://template.singlelinelogics.com/tintumon/";
$user = $facebook->getUser();
if(empty($user['id'])){
$loginUrl = $facebook->getLoginUrl(
array(
'scope' => 'user_status,publish_stream,user_photos',
'redirect_uri' => $redirecturi
)
);
echo("<script> top.location.href='" . $loginUrl . "'</script>");
}
$fbuser = $facebook->api('/me');
?>