twitter uygulama API

0 Cevap php

API konsolda çalışan im ben aproper sonuç alamadı zaman merhaba Şu anda benim web twitter güncelleştirme geliştirmeye çalışıyorum ... Burada ben .. benim kod yazdım ..

<?php


$tweet_text = 'Hello Twitter';
print "Posting...\n";
$result = post_tweet($tweet_text);
print "Response code: " . $result . "\n";

function post_tweet($tweet_text) {

  // Use Matt Harris' OAuth library to make the connection
  // This lives at: https://github.com/themattharris/tmhOAuth
  require_once('tmhoauth/tmhOAuth.php');

  // Set the authorization values
  // In keeping with the OAuth tradition of maximum confusion, 
  // the names of some of these values are different from the Twitter Dev interface
  // user_token is called Access Token on the Dev site
  // user_secret is called Access Token Secret on the Dev site
  // The values here have asterisks to hide the true contents 
  // You need to use the actual values from Twitter
  $connection = new tmhOAuth(array(
    'consumer_key'    => 'XXX',
  'consumer_secret' => 'XXX',
  'user_token'      => 'XXX',
  'user_secret'     => 'XXX',
  )); 

  // Make the API call
  $connection->request('POST', 
    $connection->url('1/statuses/update'), 
    array('status' => $tweet_text));

  return $connection->response['code'];
}
?>

stsuus yanıt olarak, aşağıdaki gibi bakmak olduğunu

{
  "request": "\/1\/statuses\/update.json",
  "error": "Client must provide a 'status' parameter with a value."
}


statuus:403 forbidden

hata oluştu neden herhangi biri açıklayabilir ...

şimdiden teşekkür

0 Cevap