使用php在twitter上分享图像

时间:2014-09-02 05:21:21

标签: php facebook twitter

<?php
    $title = urlencode('Nature'); 
    $url = urlencode('http://amazingpics.net/content/Nature/Amazing%20Nature%20698.jpg');
    $image = urlencode('http://trainees.ocs.org/training/hariharan/01-09-2014/images/img2.jpg');
?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Sharing Images</title>
<link href="css/share.css" rel="stylesheet" type="text/css" />
</head>

<body>
<div class="all">
  <div class="top">
  <div class="nature" align="center">
  <p class="nat">I LOVE NATURE</p>
  </div>
  <p>&nbsp;</p>
    <div class="img"><img src="images/img2.jpg" height="250" width="500" /></div>
    <div class="share"><a onClick="window.open('http://www.facebook.com/sharer.php?s=100&amp;p[title]=<?php echo $title;?>&amp;p[url]=<?php echo $url; ?>&amp;&amp;p[images][0]=<?php echo $image;?>','sharer','toolbar=0,status=0,width=600,height=400');" href="javascript: void(0)"><img src="images/share.png" width="200" height="40" /></a></div>
    <div class="share"><a onClick="window.open('http://twitter.com/intent/tweet?url=<?php echo $url;?>','sharer','toolbar=0,status=0,width=600,height=400');" href="javascript: void(0)"><img src="images/twitter.png" width="200" height="40" /></a></div>
    <p>&nbsp;</p>
  </div>
</div>
</body>
</html>

我尝试使用上面的代码在facebook和twitter上分享图片。它在Facebook中正常工作,但图像无法在twitter中显示。链接仅显示。请帮我在php上分享图片。提前谢谢......

1 个答案:

答案 0 :(得分:1)

即使是关于Twitter API文档的代码和示例也是直截了当的,但是通过Twitter API为推文图像找出正确的代码并不容易。

要创建Twitter应用程序,您需要执行以下操作:https://dev.twitter.com/

在twitter dev网站中,您必须指定应用程序的名称和解密以及主页面和回调页面的URL(稍后将详细介绍这两个页面)。此外,您必须确保将您的Twitter应用程序设置为“读取和写入”,以便授权代表用户发送图片。

在正确创建应用程序后,twitter会为您提供“消费者密钥”和“消费者密钥”,您需要保留这两个字符串变量,因为他们需要在与Twitter API通信时识别您的应用程序以发送推文图像。 下载twitter代码库下载必需的PHP库

对于twitter身份验证和图片上传到twitter,您需要tmhOAuth.php和tmhUtilities.php,您可以从https://github.com/opauth/twitter/tree/master/Vendor/tmhOAuth下载它们 推文图像代码如何工作?

推特图像的代码分为两个文件,第一个是代码开始的“start.php”和第二个文件“callback.php”,在授权给我们的应用程序后,twitter会将用户重定向回来。 (我们的callback.php文件的URL已在上面的步骤中在应用程序设置中更新) 代码如何工作

i)在“start.php”中,我们要做的第一件事是使用我们在创建应用程序时获取它们的密钥和秘密来请求来自twitter API的临时访问令牌(此进程调用获取请求令牌)。

$tmhOAuth = new tmhOAuth(array(
 'consumer_key' => API_KEY,
 'consumer_secret' => API_SEC, 
 'curl_ssl_verifypeer' => false
 ));
 $tmhOAuth->request('POST', $tmhOAuth->url('oauth/request_token', ''));
 $response = $tmhOAuth->extract_params($tmhOAuth->response["response"]);

ⅱ)。在我们拥有临时访问令牌后,我们需要将它们保存在cookie中以供用户验证我们的应用程序并重定向回

后用。

“callback.php”

$temp_token = $response['oauth_token']; 
$temp_secret = $response['oauth_token_secret']; 
$time = $_SERVER['REQUEST_TIME'];
setcookie("Temp_Token", $temp_token, $time + 3600 * 30, '/twitter_test/');
setcookie("Temp_Secret", $temp_secret, $time + 3600 * 30, '/twitter_test/'); setcookie("Tweet_Txt", $txt, $time + 3600 * 30, '/twitter_test/');
setcookie("Img_Url", $img, $time + 3600 * 30, '/twitter_test/');

ⅲ)。要求用户授权我们的应用程序需要重定向到Twitter API页面,用户将填写其用户名和密码并完成授权过程。

$url = $tmhOAuth->url("oauth/authorize", "") . '?oauth_token=' . $temp_token;
header("Location:".$ url);
exit();

IV)。授权我们的应用程序后,Twitter API会将用户重定向到应用程序设置中指定的“callback.php”URL。

v)中。在“callback.php”文件中,存在推送图像的实际代码。首先,我们从cookie中检索临时访问令牌,然后使用正确的访问令牌进行交换。

  $token = $_COOKIE['Temp_Token'];
     $secret = $_COOKIE['Temp_Secret'];
     $img = $_COOKIE['Img_Url'];
     $txt = $_COOKIE['Tweet_Txt'];
     $tmhOAuth = new tmhOAuth(array(
    'consumer_key' => API_KEY,
    'consumer_secret' => API_SEC,
     'user_token' => $token,
     'user_secret' => $secret, 
    'curl_ssl_verifypeer' => false
     ));
     $tmhOAuth->request("POST", $tmhOAuth->url("oauth/access_token", ""), array( 
      // pass the oauth_verifier received from Twitter 


   'oauth_verifier' => $_GET["oauth_verifier"] 
     )); 
     $response = $tmhOAuth->extract_params($tmhOAuth->response["response"]);
     $tmhOAuth->config["user_token"] = $response['oauth_token']; 
   $tmhOAuth->config["user_secret"] = $response['oauth_token_secret'];

ⅵ)。在我们获得正确的访问令牌后,我们会发布我们想要的图像。

$img = './'.$img;
$code = $tmhOAuth->request('POST', 'https://api.twitter.com/1.1/statuses/update_with_media.json',
 array(
 'media[]' => "@{$img}",
 'status' => "$txt" 
 ),
 true, // use auth
 true // multipart
 );

ⅶ)。来自twitter API的返回代码将告诉我们操作是否正确完成。

  

    if ($code == 200){
      echo '<h1>Your image tweet has been sent successfully</h1>';
      }else{
      tmhUtilities::pr($tmhOAuth->response['response']);
     }