Twitter Api Problem?

0 Cevap php

Ben Twitter yetkilendirme için () EpiTwitter getAuthorizeUrl kullanıyorum.

kodu:

<?php
include 'EpiCurl.php';
include 'EpiOAuth.php';
include 'EpiTwitter.php';
require_once 'secret.php';

$Twitter = new EpiTwitter($consumer_key, $consumer_secret);
$url = $Twitter->getAuthorizationUrl();
echo '<a href="' .$url. '">Authorize with Twitter</a>';

?>

ben bu hatayı almaya devam

"Woah var!

Bu sayfa artık geçerli değil. Birisi zaten sağlanan belirteç bilgileri kullanılan gibi görünüyor. Bu sayfaya gönderilen sitesine dönün ve tekrar deneyin ... muhtemelen bir hataydı. "

Url iyi görünüyor, ama sadece çalışmıyor.

http://twitter.com/oauth/authorize?oauth_token=

im sure the ?oauth_token= must have a value, but its not being generated!! thanks for the help secrets.php

<?php
$consumer_key ='xxx';
$consumer_secret ='xxx';

?>

0 Cevap