[twitter-dev] Re: Geocoded searches broken

2010-11-28 Thread Randy Walker
I can confirm we are having the same issue still with our geo coded
searches.

FWIW, the error is very similar to the one we got with non-geo
searches when we specified language (lang=en).

Just like the language search bug, you can get around this by putting
'since' in the url (since=2010-11-24)

Not sure why but this appears to be related to the snowflake change on
Friday. At least that is when these seem to have broke.

On Nov 26, 10:53 am, Mack D. Male master...@gmail.com wrote:
 Since yesterday, geocoded searches have been broken intermittently.
 Sometimes results are returned normally, then for stretches of time
 (30 minutes or more) no results are returned. During that time,
 there's a warning like the following:

 adjusted since_id to 8230615843933184 due to temporary error

 Here's a query that at this very moment (~11:55 AM) returns zero
 results:http://search.twitter.com/search?q=near:%22Edmonton,Alberta%22

 It stopped working about an hour ago (~10:55 AM MST).

 Any information on this?

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


[twitter-dev] Re: Statuses Followers and Statuses Friends not returning correct order

2009-12-09 Thread Randy
I am seeing this as well.

This may be related to the 404 issue reported recently too (http://
groups.google.com/group/twitter-development-talk/browse_thread/thread/
ece2aec4fe601bd9)

On Dec 5, 2:19 pm, Colby Palmer colbywo...@gmail.com wrote:
 I noticed this today too and then saw this post.  I copied this over
 on the issue 
 tracker:http://code.google.com/p/twitter-api/issues/detail?id=1257


[twitter-dev] Re: 404 Errors on friends and followers using cursors

2009-12-09 Thread Randy
I added this as issue 1264 in the twitter-api issue tracker, which
you'll have to find on your own. It appears they don't trust me enough
to let me post links here yet. :D

On Dec 8, 1:01 pm, Randy randy.posyn...@gmail.com wrote:
 I am seeing the same issue. In my case, the first four iterations work
 (i.e. I retrieve 400 users), but the next call gives me a 404.


[twitter-dev] Re: 404 Errors on friends and followers using cursors

2009-12-09 Thread Randy
I am still seeing this issue. Trying the URLs provided by Ammo
Collector in the top post still yields 404's as well.

On Dec 9, 9:50 am, John Kalucki j...@twitter.com wrote:
 Over the last 4 or so days there has been a few brief periods of instability
 on the backing store that provides the Social Graph. I'd re-run your test to
 see if you were just very unlucky, or if the issue persists.

 -John Kaluckihttp://twitter.com/jkalucki

 On Tue, Dec 8, 2009 at 1:40 PM, Randy randy.posyn...@gmail.com wrote:
  I added this to the issue tracker:
 http://code.google.com/p/twitter-api/issues/detail?id=1264

  On Dec 8, 1:01 pm, Randy randy.posyn...@gmail.com wrote:
   I am seeing the same issue. In my case, the first four iterations work
   (i.e. I retrieve 400 users), but the next call gives me a 404.


[twitter-dev] Re: 404 Errors on friends and followers using cursors

2009-12-08 Thread Randy
I am seeing the same issue. In my case, the first four iterations work
(i.e. I retrieve 400 users), but the next call gives me a 404.


[twitter-dev] Re: statuses/friends issue?

2009-12-08 Thread Randy
Are you using page parameter? If so, it was recently deprecated, so
that would explain what you are seeing... the first page over and over
again. Check the API documentation to see how to use the cursor
parameter.

On Dec 6, 8:25 pm, hansamann sven.hai...@googlemail.com wrote:
 Hi all,

 my code is calling api method statuses/friends with an increasing
 paging to get all friends information. Since a couple of hours it
 seems it never reaches a page with no friends or less than n friends
 so my code stops the recursion.

 Anyone similar problems?


[twitter-dev] Re: Twitter message with html entities get truncated

2009-11-14 Thread Randy Brown
Help from another programming site, use urlencode() . That does the trick.

On Wed, Nov 11, 2009 at 6:06 PM, mndasher mndas...@gmail.com wrote:

 I store my content in a MySQL database. The website is using PHP. Data
 fields are encoded so that html tags are using entities; i.e.  p =
 lt;pgt;  When I query the database I decode the entities, and then
 strip the tags. That works fine. But some entities don't get
 converted. So nbsp; causes a problem for a cURL message. The message
 is truncated at the ampersand.  So I did a string replace where nbsp;
 becomes a space.  So that solved one problem. But ampersand is still a
 problem. Neither amp; or simply  work. The both result in a
 truncated message.  A string replace of amp; with 'and' seems to
 work. But is kind of weird.

 I have also tried utf8_encode($message) but I don't see any difference
 in the output or the result with the API.

 All of the API help and samples I have seen use a very simple message
 example. I have not seen any help on how to format the actual
 message.  I saw some where that it should be UTF-8. Mostly the
 messages are plain text, but these two characters cause problems. So
 do quotes and single quotes as far as that goes.  If I add slashes the
 slashes come through in the final message.

 Is there any real help for these problems?