couple of days ago my application works fine when any user authenticate for app but now i am getting the following error
A PHP Error was encountered
Severity: Notice
Message: Trying to get property of non-object
Filename: libraries/tweet.php
Line Number: 205
when i debug the application i found this
exception ‘tweetException’ with message '401 | Request Failed: - ’ in D:\xampp\htdocs\couponicus\application\libraries\tweet.php:205
this are my urls
private $_authorizationUrl = ‘https://api.twitter.com/oauth/authenticate’;
//private $_authorizationUrl = ‘https://api.twitter.com/oauth/authorize’;
private $_requestTokenUrl = ‘http://api.twitter.com/oauth/request_token’;
private $_accessTokenUrl = ‘http://api.twitter.com/oauth/access_token’;
private $_signatureMethod = ‘HMAC-SHA1’;
private $_version = ‘1.0’;
private $_apiUrl = ‘http://api.twitter.com/1’;
private $_searchUrl = ‘http://search.twitter.com/’;
can anyone help me with this…??