-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm (lazily) using shell_exec() to execute a Twitter API Call.
shell_exec('curl -u user:password -d "id=3191321" http://api.twitter.com/1/twitterapi/twitterlist/members.xml');
That works fine when I authenticate correctly and put in a number for the id.
But when I try to put in a variable ($id)…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm using shell_exec() to execute a Twitter API Call.
shell_exec('curl -u user:password -d "id=3191321" http://api.twitter.com/1/twitterapi/twitterlist/members.xml');
That works fine when I authenticate correctly and put in a number for the id.
But when I try to put in a variable ($id), it screws…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hello
I'm building my first system using Twitters OAuth and have some issues.
First, I'm using Abraham's Twitter-class for this and I have followed this tutorial. However, I get these lines on my callback.php:
Warning: array_merge() [function.array-merge]: Argument #2 is not an array in C:\xampp\htdocs\twitter\twitterOAuth\OAuth…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
OK... so here is my code:
twitterEngine = [[MGTwitterEngine alloc] initWithDelegate:self];
[twitterEngine setConsumerKey:CONSUMER_KEY secret:CONSUMER_SECRET];
accessToken = [twitterEngine getXAuthAccessTokenForUsername:profile.twitterUserId password:profile.twitterPassword];
NSLog(@"Access…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I've got code that makes a simple get request to Twitter (search) using jQuery's ajax method. The code works fine on Safari, but fails on Firefox (3.6.3). In the Firefox case, my jQuery.ajax parameters 'success' method is invoked, but the supplied data is null. (In Safari, I receive a boatload of…
>>> More