[twitter-dev] Hashtag widget

2009-12-03 Thread BenR
Hi all just wondering if anyone has done anything with hashtags. I'd like to be able to display only posts from selected accounts using a specific hashtag. So I need to have an array of accounts and search these posts for a hashtag and if the hashtag is used pull the post into a widget. Has

[twitter-dev] Friendship/Create produces this error: This method requires a POST.

2009-03-12 Thread benr
I'm trying to write a function that will follow a user via the API using PHP/curl. I believe I have setup correctly using curl to POST to twitter, but I keep getting the following error: This method requires a POST.. Here is my code: $url = 'http://twitter.com/friendships/create/'.urlencode

[twitter-dev] Re: Friendship/Create produces this error: This method requires a POST.

2009-03-12 Thread benr
Thanks for the reply. I tried with with a 1 instead of true and still no dice. On Mar 12, 5:25 pm, Chad Etzel jazzyc...@gmail.com wrote: Try instead: curl_setopt ($ch, CURLOPT_POST, 1); -Chad On Thu, Mar 12, 2009 at 7:21 PM, benr benrasmu...@gmail.com wrote: I'm trying to write