0

我正在使用 HybridAuth 库。我希望能够将带有图像的消息发布到经过身份验证的用户 Twitter 个人资料。

setUserStatus 方法可以很好地自动发送推文。

我写了以下方法:

function setUserStatus( $status, $image )
{
    //$parameters = array( 'status' => $status, 'media[]' => "@{$image}" );
    $parameters = array( 'status' => $status, 'media[]' => file_get_contents($image) );
    $response  = $this->api->post( 'statuses/update_with_media.json', $parameters );

    // check the last HTTP status code returned
    if ( $this->api->http_code != 200 ){
        throw new Exception( "Update user status failed! {$this->providerId} returned an error. " . $this->errorMessageByStatus( $this->api->http_code ) );
    }
 }

我从推特得到的消息是:

糟糕,出现错误:更新用户状态失败!推特返回错误。403 Forbidden:请求被理解,但被拒绝。

如何获得有关错误的更准确信息?是否有人已经成功发送附加到推文的图片?

谢谢 !

雨果

4

2 回答 2

3

感谢@Heena 让自己在这个问题上醒来,我做到了;)

function setUserStatus( $status )
{
    if(is_array($status))
    {
        $message = $status["message"];
        $image_path = $status["image_path"];
    }
    else
    {
        $message = $status;
        $image_path = null;
    }

    $media_id = null;

    # https://dev.twitter.com/rest/reference/get/help/configuration
    $twitter_photo_size_limit = 3145728;

    if($image_path!==null)
    {
        if(file_exists($image_path))
        {
            if(filesize($image_path) < $twitter_photo_size_limit)
            {
                # Backup base_url
                $original_base_url = $this->api->api_base_url;

                # Need to change base_url for uploading media
                $this->api->api_base_url = "https://upload.twitter.com/1.1/";

                # Call Twitter API media/upload.json
                $parameters = array('media' => base64_encode(file_get_contents($image_path)) );
                $response  = $this->api->post( 'media/upload.json', $parameters ); 
                error_log("Twitter upload response : ".print_r($response, true));

                # Restore base_url
                $this->api->api_base_url = $original_base_url;

                # Retrieve media_id from response
                if(isset($response->media_id))
                {
                    $media_id = $response->media_id;
                    error_log("Twitter media_id : ".$media_id);
                }

            }
            else
            {
                error_log("Twitter does not accept files larger than ".$twitter_photo_size_limit.". Check ".$image_path);
            }
        }
        else
        {
            error_log("Can't send file ".$image_path." to Twitter cause does not exist ... ");
        }
    }

    if($media_id!==null)
    {
        $parameters = array( 'status' => $message, 'media_ids' => $media_id );
    }
    else
    {
        $parameters = array( 'status' => $message); 
    }
    $response  = $this->api->post( 'statuses/update.json', $parameters );

    // check the last HTTP status code returned
    if ( $this->api->http_code != 200 ){
        throw new Exception( "Update user status failed! {$this->providerId} returned an error. " . $this->errorMessageByStatus( $this->api->http_code ) );
    }
}

要使其工作,您必须这样做:

$config = "/path_to_hybridauth_config.php";
$hybridauth = new Hybrid_Auth( $config );
$adapter = $hybridauth->authenticate( "Twitter" );

$twitter_status = array(
    "message" => "Hi there! this is just a random update to test some stuff",
    "image_path" => "/path_to_your_image.jpg"
);
$res = $adapter->setUserStatus( $twitter_status );

享受 !

于 2014-11-16T10:54:23.400 回答
2

我不了解 hybridauth 然后我使用了这个库 https://github.com/J7mbo/twitter-api-php/archive/master.zip

然后我成功地使用了下面的代码:(出现在堆栈的其他地方)

    <?php
    require_once('TwitterAPIExchange.php');
    $settings= array(
    'oauth_access_token' => '';
    'oauth_access_secret' => '';
    'consumer_key' => '';
    'consumer_secret' => '';
    // paste your keys above properly
    )

    $url_media = "https://api.twitter.com/1.1/statuses/update_with_media.json";
    $requestMethod = "POST";

    $tweetmsg = $_POST['post_description'];   //POST data from upload form
    $twimg = $_FILES['pictureFile']['tmp_name']; // POST data of file upload

    $postfields = array(
        'status' => $tweetmsg,
        'media[]' => '@' . $twimg
    );
    try {
        $twitter = new TwitterAPIExchange($settings);
        $twitter->buildOauth($url_media, $requestMethod)
                ->setPostfields($postfields)
                ->performRequest();

        echo "You just tweeted with an image";
    } catch (Exception $ex) {
        echo $ex->getMessage();
    }
?>
于 2014-11-09T04:43:33.160 回答