我正在使用php代码在joomla文章中将照片上传到Facebook,我有一切正常但由于某种原因代码生成两个登录链接,并且在处理时它将照片上传到相册两次。有人可以帮忙吗?附上我正在使用的代码。
<?php
require_once('fb-image-upload/config.php');
require_once('fb-image-upload/fb_wrapper_class.php');
$redirectURL = "http://zainylayouts.com/facebook-covers";
$fbObj = new FaceBookWrapper(APP_ID, SECRET_ID, $redirectURL);
?>
<a href ="<?php echo $fbObj->getLoginURL();?>">Login</a>
<?php
$fbObj->addPhoto('images/timeline_covers/sports/snowsports_timeline_cover.jpg', 'Snow Sports Facebook Cover', 'New Album', 'Testing Album');
?>