We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
stdClass Object ( [errors] => Array ( [0] => stdClass Object ( [message] => Sorry, that page does not exist [code] => 34 ) ) )
i got the above replay when i try to execute the following statement.
$followers = $this->connection->get('friends/list'); print_r($followers);
is there any issue or what ? im not able to get the list of freinds pls help me
The text was updated successfully, but these errors were encountered:
Hi Ashish,
Try to to do the following:
application/libraries/Twitteroauth.php
public $host = "https://api.twitter.com/1/";
public $host = "https://api.twitter.com/1.1/";
Let me know if it works or not.
Twitter has recently changed the API, so please refer to its documentation here: https://dev.twitter.com/docs/api/1.1/
Sorry, something went wrong.
On Saturday 16 March 2013 06:34 AM, Shmavon wrote:
Hi Ashish, Try to to do the following: Open |application/libraries/Twitteroauth.php| file. Find this peace of code: |public $host = "https://api.twitter.com/1/";| on line 21 Change it to this code: |public $host = "https://api.twitter.com/1.1/";| Let me know if it works or not. Twitter has recently changed the API, so please refer to its documentation here: https://dev.twitter.com/docs/api/1.1/ — Reply to this email directly or view it on GitHub #1 (comment). hi
— Reply to this email directly or view it on GitHub #1 (comment).
hi
if i change this according to your suggestion i got blank screen.
thankx for reply soon
ragards Ashish
Can you provide your server/php logs?
No branches or pull requests
stdClass Object ( [errors] => Array ( [0] => stdClass Object ( [message] => Sorry, that page does not exist [code] => 34 ) ) )
i got the above replay when i try to execute the following statement.
$followers = $this->connection->get('friends/list');
print_r($followers);
is there any issue or what ? im not able to get the list of freinds pls help me
The text was updated successfully, but these errors were encountered: