[twitter-dev] Re: Link Wrapping and Favorites

2010-06-24 Thread Manton Reece
I just switched over to include_entities, and I'm also not seeing the entities come back for favorites or mentions. Works great for home_timeline and retweets. I can fall back on my own parsing when entities are missing, but for consistently I definitely prefer letting Twitter do this work. Is it

[twitter-dev] Re: secure key - desktop applications?

2010-06-24 Thread Tom
Sure, that's an option, but not one which I would likely take, for multiple reasons, including rate limiting which I would like to apply to my client (my server is whitelisted so all accounts would suddenly get 2 - that's a bad idea). I was wondering how the big clients do this, like

[twitter-dev] Re: Kwwika - World Cup Web Development competition announced using Twitter World Cup data

2010-06-24 Thread Phil Leggetter
A Kwwik update on this: We've had a few entries for this competition but not too many so the opportunity to win that iPad is pretty good due to the low number of competitor. The deadline for entry is July 1st but the main thing is to have something in place for that date and you can then build on

[twitter-dev] Difference between Connect with Twitter and Sign in with Twitter

2010-06-24 Thread Jumpa
Hi there, I'm having an headache, trying to understand the difference between the two methods in object. They're both using OAuth, is that correct? I just noticed that Connect opens up a popup (and it's using JavaScript), sign in does not; have I to intend that diversity lays on authorization flow

[twitter-dev] Access Token

2010-06-24 Thread manjunath reddy
HI I have an requirement of reading all the tweets that has specifed word and replying to that tweeet. I am able to query all the tweets while replying to the tweet i am getting error.Couldnt autheticate the user. Please let me know how can i get the access token for the user. Please help me

[twitter-dev] Re: Problems with filtered Streaming API and Location

2010-06-24 Thread metafedora
I downloaded the Twitter iPhone app (v. 3.0.1c) and when I use it my geocoded tweets are showing up in the location-filtered stream. So, seems there is Twitterrific-specific issue with location - I will pull and compare tweets from both apps and compare them to see if I can figure out whats

[twitter-dev] 404 Problem 3 day

2010-06-24 Thread iLyas
i cant connect twitter api 3 days . I get follower and following count but not get timeline and other action. What is changing ?

[twitter-dev] position of the widget

2010-06-24 Thread André Luís Moura Lima
Hello, anyone knows if there is any attribute to set the position of the twitter widget??I need to put my widget code inside a div.

[twitter-dev] Re: position of the widget

2010-06-24 Thread André Luís Moura Lima
I have the following div and I want my widget inside of this div...here is the css of the twitter div: .twitter{ background: url(../images/bg/bg_twitter.gif) 0 0 no-repeat; width: 207px; height: 276px; float: left; } here

[twitter-dev] Can I use offline access of twitter using anywhere api?

2010-06-24 Thread kashmiri
Can I use offline access of twitter using anywhere api? just like the facebook javascript SDK.

[twitter-dev] Re: Twitter Abrahams library

2010-06-24 Thread luisg
I manage with: $CONSUMER_KEY = $this-config-item('CONSUMER_KEY'); $CONSUMER_SECRET = $this-config-item('CONSUMER_SECRET'); $connection = new TwitterOAuth($CONSUMER_KEY, $CONSUMER_SECRET); $response = json_decode($connection-http('http://api.twitter.com/1/ statuses/public_timeline.json',

[twitter-dev] Re: Streaming API OAuth explanation?

2010-06-24 Thread Wil
I'm getting this response: HTTP/1.1 401 Unauthorized Content-Length: 1296 Cache-Control: must-revalidate,no-cache,no-store Content-Type: text/html; charset=iso-8859-1 Server: Jetty(6.1.17) WWW-Authenticate: Basic realm=Firehose html head meta http-equiv=Content-Type content=text/html;

Re: [twitter-dev] Re: Streaming API OAuth explanation?

2010-06-24 Thread John Kalucki
Aside from the oAuth issue, which others can address, the only valid delimited value is length. -John On Thu, Jun 24, 2010 at 7:58 AM, Wil willi...@gmail.com wrote: I'm getting this response: HTTP/1.1 401 Unauthorized Content-Length: 1296 Cache-Control: must-revalidate,no-cache,no-store

Re: [twitter-dev] Re: Link Wrapping and Favorites

2010-06-24 Thread Taylor Singletary
Hi Manton, I see the entities coming through when I request my mentions timeline.. http://api.twitter.com/1/statuses/mentions.xml?include_entities=true Can you verify again that you're not seeing it for the mentions timeline when you include this parameter? Favorites doesn't yet return

Re: [twitter-dev] Re: Streaming API OAuth explanation?

2010-06-24 Thread Taylor Singletary
Hi Wil, I can help you with the OAuth component of this. Can you share your signature base string for the request? Here's an example of a few of the steps of a functioning OAuth request against this endpoint: POST body source=softwarenamedelimited=1follow=156934710 Signature Base String

[twitter-dev] Delete List Member + OAuth Authorization

2010-06-24 Thread Milen
Hi all, I've stumbled upon a strange issue with the /:user/:list_id/members method. If we use DELETE as the HTTP method, we get back Could not authenticate you. when we try to delete a member. If we just switch to POST and use _method=DELETE, the call succeeds with the _exact_ same secret tokens

Re: [twitter-dev] Delete List Member + OAuth Authorization

2010-06-24 Thread Taylor Singletary
Hi Milen, When you're using a DELETE HTTP method, are you sending the id=12345 parameter on the query string or in a POST body? It should be in the query string. There's some contention in the universe on whether HTTP DELETEs should accept a body. In our case, like many HTTP servers, we do not.

[twitter-dev] How to get location information?

2010-06-24 Thread Varun Bedi
Hi, I am currently working on a project and I require to get the following information by using Javascript: 1. Location information from profile of user. 2. Geolocation provided when tweet is sent from mobile 3. Location information when it is provided by using the IP address when tweet is

[twitter-dev] Re: Geo-caching Without Lat/Long

2010-06-24 Thread Bryan
Great; thanks for the clarification Matt. But I'm still having trouble actually tweeting UTF-8 characters. If I tweet this: This is an @test … without quotes where you can see an actual ellipsis (single UTF-8 character), I get a successful response code (200), but nothing is actually tweeted.

Re: [twitter-dev] Re: Geo-caching Without Lat/Long

2010-06-24 Thread Matt Harris
Hey Bryan, Can you share the code you are using to send the Tweet, and if possible the post body sent by your code. Thanks, Matt On Thu, Jun 24, 2010 at 10:06 AM, Bryan bryan.p...@gmail.com wrote: Great; thanks for the clarification Matt. But I'm still having trouble actually tweeting UTF-8

[twitter-dev] Re: Geo-caching Without Lat/Long

2010-06-24 Thread Bryan
Certainly: ?php require_once('twitteroauth.php'); $message = This is an @test … ; // utf(ellipsis) //$message = This is an @test ... ; // ascii(three periods) echo $message.br /; $message = strlen($message) 140 ? substr($message,0,140) : $message; $connection = new TwitterOAuth(X, X, X, X);

Re: [twitter-dev] Re: Geo-caching Without Lat/Long

2010-06-24 Thread Taylor Singletary
Hey Brian, I don't know enough about the internals of Abraham's library to know how it handles UTF-8 characters when generating POST bodies or signature base strings, but here's an example of successfully tweeting with the UTF-8 ellipsis: I'm pretty surprised at how the status is encoded in the

[twitter-dev] Re: Link Wrapping and Favorites

2010-06-24 Thread Manton Reece
Thanks Taylor! You're right -- mentions are working fine, it was a bug on my side. Glad to hear you're on top of getting entities into favorites too. And the search API is another one to cover. On Jun 24, 10:36 am, Taylor Singletary taylorsinglet...@twitter.com wrote: Hi Manton, I see the

Re: [twitter-dev] Re: Link Wrapping and Favorites

2010-06-24 Thread Taylor Singletary
The Search API is a much bigger fish to fry :) Rest assured, we're working on it. On Thu, Jun 24, 2010 at 12:10 PM, Manton Reece man...@gmail.com wrote: Thanks Taylor! You're right -- mentions are working fine, it was a bug on my side. Glad to hear you're on top of getting entities into

[twitter-dev] Re: Twitter Places Follow Up

2010-06-24 Thread ELB
Currently we call the exact same endpoint to get the Tweets from a given place, but we pass the latitude and longitude, rather than the Place ID. The Latitude/Longitude method forces a 1 km radius around the endpoint. So, when we get the tweets via the Place ID method at the same endpoint - will

[twitter-dev] Re: Geo-caching Without Lat/Long

2010-06-24 Thread Bryan
Interesting; thank you. I found the solution using your information. Basically, PHP acts funny with raw utf characters, and in reality I needed to pass three hex characters like so: $message =

[twitter-dev] Incorrect Signature

2010-06-24 Thread jc
Hi everyone! I'm working on a Twitter application that uses Twitter API through Twitter4j and authenticates different accounts using OAuth. We are getting an incorrect signature error when trying to perform any post to twitter api (i.e. sending an update, following, etc). I'm using Twitter4j

Re: [twitter-dev] Incorrect Signature

2010-06-24 Thread Taylor Singletary
Hi Hoel, Signature validation errors occur for a variety of reasons. We have a few error conditions on the API right now where when under heavy load we might spuriously throw an invalid signature error, but these cases should be rare. To better assist you in your issues, you'll need to dig a bit

[twitter-dev] URL-escaping an actual percent sign

2010-06-24 Thread kewpiedoll99
Hi all, I'm having a weird experience. I encode my twitter string to send over to twitter. The status string contains something like 50 % off http://bit.ly/bbjQv0; which ends up escaped in the url I'm sending to twitter as: http://twitter.com/home/?status=50%20%25%20off%20http:// bit.ly/bbjQv0.

[twitter-dev] Erroneous return from location-based search

2010-06-24 Thread @IDisposable
It seems that every time someone checks into the Blue Bottle Coffee location on foursquare, they appear in our location search for St. Louis, MO. This is odd because the people tweeting are usually from Brooklyn or NYC, and the Blue Bottle is in Brooklyn... thus they really should not appear in

Re: [twitter-dev] 404 Problem 3 day

2010-06-24 Thread Taylor Singletary
Can you share the URLs you are using when connecting? All REST API URLs should have both an api subdomain and a 1 for the version number: For example, you should be using: http://api.twitter.com/1/statuses/user_timeline.xml and NOT http://twitter.com/statuses/user_timeline.xml Taylor On Wed,

Re: [twitter-dev] Failed to validate oauth signature and token with xauth

2010-06-24 Thread Taylor Singletary
Hi there, Are you still having this issue? In the past when I've seen other developers having issues accomplishing this in Javascript, it's come down to an issue in the library used for HMAC-SHA1 and Base64 encoding. While it works in most conditions, there are apparently some edge cases where

Re: [twitter-dev] Access Token

2010-06-24 Thread Taylor Singletary
Hi Manjunath, You'll want to read about implementing OAuth in your application at http://dev.twitter.com/auth -- there are some convenient features we offer to acquire an access token for your own account and own application, but you'll still need to implement the bulk of OAuth. Taylor On Wed,

Re: [twitter-dev] Re: Twitter Places Follow Up

2010-06-24 Thread David Helder
Only tweets from the place, or a place within the place. David On Thu, Jun 24, 2010 at 12:44 PM, ELB ebrit...@gmail.com wrote: Currently we call the exact same endpoint to get the Tweets from a given place, but we pass the latitude and longitude, rather than the Place ID.  The

Re: [twitter-dev] Re: Geo-caching Without Lat/Long

2010-06-24 Thread Matt Harris
Hey Bryan, Thanks for sharing the solution with the list. Glad it's working for you now. Matt On Thu, Jun 24, 2010 at 12:52 PM, Bryan bryan.p...@gmail.com wrote: Interesting; thank you. I found the solution using your information. Basically, PHP acts funny with raw utf characters, and in

[twitter-dev] Re: mentions API broken?

2010-06-24 Thread Mark Sievers
Never solved this, the mentions still do not turn up. Will put this down to a glitch in the matrix. On Jun 22, 8:54 am, Mark Sievers mark.siev...@gmail.com wrote: Hey Taylor, Thanks for the response. Yup, still seeing the problem for that block of time/mentions, but subsequent mentions are

[twitter-dev] twitter widget modifications

2010-06-24 Thread André Luís Moura Lima
Hello, I want to do some modifications on my twitter widget,to be more specific I want to do some changes on widget.js code...i want no foot on the widget and also want to change the picture and the user name behaviors.I will explain:instead of the name of the user and the username texts,i want