[twitter-dev] Re: Posting non-English Characters using OAuth

2009-11-02 Thread Kalpesh

I have tried two things to get my non-english characters status update
to work:
1.) Using meta tag in the head as meta http-equiv=Content-Type
content=application/x-www-form-urlencoded; charset=UTF-8 /
2.) Using utf8_encode for status and posting

None of the above works. I get incorrect signature trying to post
non-english characters. English characters works fine.
I am able to update non-english status with direct status posting from
cURL, problem is with oAuth..
Can anyone provide a working example code using oAuth for this?

On Oct 29, 12:35 am, Cameron Kaiser spec...@floodgap.com wrote:
  What encoding function to use for postingnon-englishcharacters ??
  i am using urlencode but it is not postingnon-englishcharacters to
  twitter

 Are you properly encoding the characters as UTF-8? That should occur
 before you URL-encode your payload.

 --
  personal:http://www.cameronkaiser.com/--
   Cameron Kaiser * Floodgap Systems *www.floodgap.com* ckai...@floodgap.com
 -- The gift of death metal does not smile on the good looking. -- S.B. #141 
 ---


[twitter-dev] Backberry application + twitter updates

2009-11-02 Thread sagar

Hello everyone..I am developing a blackberry app for twitter.

I am using basic auth. But when i try to access the protected
resources it gives me 401 error.
I am accessing it from simulator. Same error comes for bbtweet from my
simulator. MDS is running and i can access internet from simulator.

Anyidea whether simulator is causing the prob?


[twitter-dev] Re: Draft of List API documentation

2009-11-02 Thread yoni

Bulk Add would be huge. Likewise, Bulk Delete.

~ yoni

On Oct 20, 4:40 am, Tim Haines tmhai...@gmail.com wrote:
 Hey Marcel,
 Another 2 methods I'd like to see added to the list api - a way to get the
 id's of all current members (all 500), and a way to get the id's of all
 current subscribers - cursor based with as many per 'page' as possible.

 Cheers,

 Tim.

 On Fri, Oct 16, 2009 at 8:04 PM, Marcel Molina mar...@twitter.com wrote:

  Hey folks. As some of you have likely read we're starting to do some
  private beta testing of our new lists feature. We're not quite ready
  to open it up to everyone but we've made some headway on the API and
  wanted to share some details of what we've got so far.

  There are a handful of things on our todo lists so don't consider this
  signed and sealed just yet.

  You may notice this API is a bit of a departure from the rest of the
  API. It's a bit more, errr, REST than the rest.

  First off, here's the current payload for a list:

  ?xml version=1.0 encoding=UTF-8?
  list
   id1416/id
   nametall people/name
   full_name@noradio/tall-people/full_name
   slugtall-people/slug
   subscriber_count0/subscriber_count
   member_count3/member_count
   uri/noradio/tall-people/uri
   modepublic/mode
   user
     id3191321/id
     nameMarcel Molina/name
     screen_namenoradio/screen_name
     locationSan Francisco, CA/location
     descriptionEngineer at Twitter on the @twitterapi team, obsessed
  with rock climbing amp; running. In a past life I was a member of the
  Rails Core team./description
     profile_image_url
 http://a3.twimg.com/profile_images/53473799/marcel-euro-rails-conf_no...
  /profile_image_url
     urlhttp://project.ioni.st/url
     protectedfalse/protected
     followers_count40059/followers_count
     profile_background_color9AE4E8/profile_background_color
     profile_text_color33/profile_text_color
     profile_link_color0084B4/profile_link_color
     profile_sidebar_fill_colorDDFFCC/profile_sidebar_fill_color
     profile_sidebar_border_colorBDDCAD/profile_sidebar_border_color
     friends_count354/friends_count
     created_atMon Apr 02 07:47:28 + 2007/created_at
     favourites_count131/favourites_count
     utc_offset-28800/utc_offset
     time_zonePacific Time (US amp; Canada)/time_zone
     profile_background_image_url
 http://a1.twimg.com/profile_background_images/18156348/jessica_tiled
  /profile_background_image_url
     profile_background_tiletrue/profile_background_tile
     statuses_count3472/statuses_count
     notificationsfalse/notifications
     geo_enabledtrue/geo_enabled
     verifiedfalse/verified
     followingfalse/following
   /user
  /list

  === Lists ===

  POST '/:user/lists.:format'
  Creates a new list for the authenticated user.

  Parameters:
   * name: the name of the list. (required)
   * mode: whether your list is public of private. Values can be
  'public' or 'private'. Public by default if not specified. (optional)

  Usage notes:
   :user in the url should be the screen name of the user making the
  request to create the list

  Supported formats:
  xml, json

  e.g.
   curl -u USERNAME:PASSWORD -d name=tall peoplemode=private
 http://twitter.com/noradio/lists.xml

  POST/PUT '/:user/lists/:list_slug.:format'
  Updates the specified list.

  Takes the same parameters as the create resource at POST
  '/:user/lists.:format' (:name and :mode).

  Supported formats:
  xml, json

  e.g.
   curl -u USERNAME:PASSWORD -d name=giantsmode=public
 http://twitter.com/noradio/lists/tall-people.xml

  GET '/:user/lists.:format'
  Lists your lists.

  Supported format:
  xml, json

  e.g.
   curl -u USERNAME:PASSWORDhttp://twitter.com/noradio/lists.xml

  GET '/:user/lists/memberships.:format'
  List the lists the specified user has been added to.

  Supported formats:
  xml, json

  e.g.
   curl -u USERNAME:PASSWORD
 http://twitter.com/noradio/lists/memberships.xml

  DELETE '/:user/lists/:list_slug.:format'
  Delete the specified list owned by the authenticated user.

  Parameters:
   * list_slug: the slug of the list you want to delete. (required)

  Supported formats:
  xml, json

  e.g.
   curl -u USERNAME:PASSWORD -X DELETE
 http://twitter.com/noradio/lists/tall-people.xml

  GET '/:users/lists/:list_slug/statuses.:format'
  Show tweet timeline for members of the specified list.

  Parameters:
   * list_slug: the slug of the list you want the member tweet timeline
  of. (required)
   * next/previous_cursor: used to page through results (optional)

  Supported formats:
  xml, json

  e.g.
   curl -u USERNAME:PASSWORD
 http://twitter.com/noradio/lists/tall-people/statuses.xml

  GET '/:users/lists/:list_slug.:format'
  Show a specific list you can use the new resource.

  Supported formats:
  xml, json

  e.g.
   curl -u USERNAME:PASSWORD
 http://twitter.com/noradio/lists/tall-people.xml

  === List members ===

  POST '/:user/:list_slug/members.:format'
  Add a member to a list.

  Parameters:
   * id: the id 

[twitter-dev] Incorrect signature returned for Lists API

2009-11-02 Thread Nelu Lazar

I am experiencing Incorrect signature responses while requesting any
Lists API XMLs.

hash
  request/tweetvisor/lists/subscriptions.xml/request
  errorIncorrect signature/error
/hash

I tried various methods, with no success: POST, GET, HTTPS (default),
HTTP. It only happens to Lists API calls, all other released API calls
are working fine.

If anyone know what's going on, please advise. Thanks,

- @NeluLazar



[twitter-dev] Truncated URLs

2009-11-02 Thread Adam Green

I'm extracting URLs from tweets, and some of them are truncated at the
end of a tweet. The URL ends up as something like http://domain...

I can't find anything in the API that will let me get the full URL, so
I assume it is lost. Is this correct, or is there some trick to get
back the entire URL before truncation?


[twitter-dev] Re: Incorrect signature returned for Lists API

2009-11-02 Thread Nelu Lazar

Figured the answer for the issue above, for @jmathai's EPITwitter
library, here is the call code that works:

$twitterOAuthObj-{'get_'.(string)strtolower
($username).'ListsMemberships'}(array(...));

- @NeluLazar


On Nov 2, 10:37 am, Nelu Lazar cont...@nelulazar.com wrote:
 I am experiencing Incorrect signature responses while requesting any
 Lists API XMLs.

 hash
   request/tweetvisor/lists/subscriptions.xml/request
   errorIncorrect signature/error
 /hash

 I tried various methods, with no success: POST, GET, HTTPS (default),
 HTTP. It only happens to Lists API calls, all other released API calls
 are working fine.

 If anyone know what's going on, please advise. Thanks,

 - @NeluLazar


[twitter-dev] Re: Posting non-English Characters using OAuth

2009-11-02 Thread Duane Roelands

I'd be very interested in seeing your solution.

I'm having this very problem in my OAuth implementation and I can't
seem to find a good solution.

On Nov 2, 7:15 am, Kalpesh kalp.meh...@gmail.com wrote:
 Done!
 It's now updating status successfully for ascii as well as non-ascii
 characters..
 the problem was my oAuth.. i downloaded the latest code and it's
 working flawlessly..
 thx for ur help!

 On Nov 2, 4:27 pm, Kalpesh kalp.meh...@gmail.com wrote:

  I have tried two things to get my non-english characters status update
  to work:
  1.) Using meta tag in the head as meta http-equiv=Content-Type
  content=application/x-www-form-urlencoded; charset=UTF-8 /
  2.) Using utf8_encode for status and posting

  None of the above works. I get incorrect signature trying to post
  non-english characters. English characters works fine.
  I am able to update non-english status with direct status posting from
  cURL, problem is with oAuth..
  Can anyone provide a working example code using oAuth for this?

  On Oct 29, 12:35 am, Cameron Kaiser spec...@floodgap.com wrote:

What encoding function to use for postingnon-englishcharacters ??
i am using urlencode but it is not postingnon-englishcharacters to
twitter

   Are you properly encoding the characters as UTF-8? That should occur
   before you URL-encode your payload.

   --
    
   personal:http://www.cameronkaiser.com/--
     Cameron Kaiser * Floodgap Systems *www.floodgap.com*ckai...@floodgap.com
   -- The gift of death metal does not smile on the good looking. -- S.B. 
   #141 ---


[twitter-dev] [ANN] Twitter Developer Nest: London 5 - Just over a week away (Nov 10, 2009)

2009-11-02 Thread Jonathan Markwell

We hope you'll be able to join us at the 5th London Twitter Developer
Nest (@devnest) next Tuesday evening. Please follow the link below to
get your free ticket to to pizza, beer and some geeky conversations
about building things on Twitter.

Have you got something you'd like to share with the community in
person? Get in touch with Angus Fox (@nuxnix) via
ang...@multizone.co.uk and we can sign you up for a 140 second Show 
Tweet slot.


http://devnest5.eventbrite.com


Venue, pizza and beer kindly sponsored by Sun Startup Essentials:
http://www.sun.com/startupessentials/

I look forward to seeing many of you there!

Jonathan Markwell
http://twitter.com/jot


[twitter-dev] expanded geocoding APIs

2009-11-02 Thread Kal

Hi everyone. I've been working on a twitter app with a small team for
about half a year now that is focused on geocoding and mapping of
tweets. Work so far has been done with dummy data, since the geocoding
APIs aren't available yet. I've been looking at how I might use the
upcoming APIs to access real twitter geo data, but it doesn't seem
possible to get the data that we need.

Right now in our test application we have a database of fake tweets
that include lat/lon coordinates. This allows us to do queries for
specific regions, periods of time, etc. For example, we need to know
how many tweets were made within a certain rectangular area (someone's
mobile screen) within the last hour, week etc. Right now I can get all
of the tweets in one query, and then perform clustering to display
them on a map. I cannot see anything in the upcoming APIs that allows
me access to this sort of data.

I've looked at 
http://search.twitter.com/search.json?geocode=40.757929%2C-73.985506%2C25km,
but that only gives tweets within a certain radius, and only up to 100
at a time. This isn't practical when I need to identify on a map where
perhaps thousands of tweets have happened over an extended time
period. I've looked elsewhere and can't see anything that would help
our situation, save the firehose. I know it says don't contact twitter
about access, they'll contact you, but there is no way to launch our
app without access to it.

I would love to hear any suggestions people might have as to how I
could perform the queries I need to perform, or perhaps alternative
techniques I have neglected to think of.

Thanks,
Kallin Nagelberg


[twitter-dev] Re: Twitter API Returning Nothing

2009-11-02 Thread Alexander

Hi Michael,

Have a look here: 
http://groups.google.com/group/twitter-development-talk/browse_thread/thread/71d7e0bc15e6a8d1

Regards,
Alex.

On Nov 1, 1:49 pm, Michael Steuer mste...@gmail.com wrote:
 Hi Jesse,

 Not sure if this is it, but looking at your code you're making a POST  
 request to Twitter but sending the status parameter as a GET request  
 parameter as part of the URL instead of a POST parameter. Send the  
 data via POST too, see if that helps.

 On Oct 31, 2009, at 11:23 AM, Jesse Bunch bunch.je...@gmail.com wrote:

  Hello, here is my cURL output from the response. Its empty! I am
  attaching both the code used and the response. I have been at this for
  hours and cannot find out why this is happening. Thanks for your help.

  TWITTER API CURL RESPONSE
  url ::http://twitter.com/statuses/update.xml?status=test+agasdf
  content_type ::
  http_code :: 0
  header_size :: 0
  request_size :: 0
  filetime :: -1
  ssl_verify_result :: 0
  redirect_count :: 0
  total_time :: 0
  namelookup_time :: 0.060027
  connect_time :: 0
  pretransfer_time :: 0
  size_upload :: 0
  size_download :: 0
  speed_download :: 0
  speed_upload :: 0
  download_content_length :: -1
  upload_content_length :: -1
  starttransfer_time :: 0
  redirect_time :: 0

  CODE USED TO SEND REQUEST TO TWITTER
  ?php

  // A simple function using Curl to post (GET) to Twitter
  // Kosso : March 14 2007

  function postToTwitter($username,$password,$message){

     $host = http://twitter.com/statuses/update.xml?status=.urlencode
  (stripslashes(urldecode($message)));

     $ch = curl_init();
     curl_setopt($ch, CURLOPT_URL, $host);
     curl_setopt($ch, CURLOPT_VERBOSE, 1);
     curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
     curl_setopt($ch, CURLOPT_USERPWD, $username:$password);
     curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
     curl_setopt($ch, CURLOPT_POST, 1);

     $result = curl_exec($ch);
     // Look at the returned header
     $resultArray = curl_getinfo($ch);

     curl_close($ch);

     if($resultArray['http_code'] == 200){
          $twitter_status='Your message has been sent! a href=http://
  twitter.com/'.$username.'See your profile/a';
     } else {
          $twitter_status=Error posting to Twitter. Retrybrbr;
             foreach ($resultArray as $key = $value) {
                 $twitter_status .= $key .  ::  . $value . br;
             }
     }
     return $twitter_status;
  }
  ?


[twitter-dev] Re: expanded geocoding APIs

2009-11-02 Thread Walter Smulders

You could look at the Streaming API, more specifically:
http://stream.twitter.com/1/statuses/sample.json. I don't know if this
is a full stream of new public tweets or not (could someone specify
this for me too please?), but it looks like a nice start...

On Nov 2, 10:37 am, Kal kallin.nagelb...@gmail.com wrote:
 Hi everyone. I've been working on a twitter app with a small team for
 about half a year now that is focused on geocoding and mapping of
 tweets. Work so far has been done with dummy data, since the geocoding
 APIs aren't available yet. I've been looking at how I might use the
 upcoming APIs to access real twitter geo data, but it doesn't seem
 possible to get the data that we need.

 Right now in our test application we have a database of fake tweets
 that include lat/lon coordinates. This allows us to do queries for
 specific regions, periods of time, etc. For example, we need to know
 how many tweets were made within a certain rectangular area (someone's
 mobile screen) within the last hour, week etc. Right now I can get all
 of the tweets in one query, and then perform clustering to display
 them on a map. I cannot see anything in the upcoming APIs that allows
 me access to this sort of data.

 I've looked 
 athttp://search.twitter.com/search.json?geocode=40.757929%2C-73.985506%...,
 but that only gives tweets within a certain radius, and only up to 100
 at a time. This isn't practical when I need to identify on a map where
 perhaps thousands of tweets have happened over an extended time
 period. I've looked elsewhere and can't see anything that would help
 our situation, save the firehose. I know it says don't contact twitter
 about access, they'll contact you, but there is no way to launch our
 app without access to it.

 I would love to hear any suggestions people might have as to how I
 could perform the queries I need to perform, or perhaps alternative
 techniques I have neglected to think of.

 Thanks,
 Kallin Nagelberg


[twitter-dev] Re: expanded geocoding APIs

2009-11-02 Thread Raffi Krikorian
yup!  the geo tag should be available and populated via the streaming  
API -- http://stream.twitter.com/1/statuses/sample.json gives a  
sampling of all the public tweets, and that should be enough to get  
most projects/visualizations off the ground.



You could look at the Streaming API, more specifically:
http://stream.twitter.com/1/statuses/sample.json. I don't know if this
is a full stream of new public tweets or not (could someone specify
this for me too please?), but it looks like a nice start...

Hi everyone. I've been working on a twitter app with a small team  
for

about half a year now that is focused on geocoding and mapping of
tweets. Work so far has been done with dummy data, since the  
geocoding

APIs aren't available yet. I've been looking at how I might use the
upcoming APIs to access real twitter geo data, but it doesn't seem
possible to get the data that we need.

Right now in our test application we have a database of fake tweets
that include lat/lon coordinates. This allows us to do queries for
specific regions, periods of time, etc. For example, we need to know
how many tweets were made within a certain rectangular area  
(someone's
mobile screen) within the last hour, week etc. Right now I can get  
all

of the tweets in one query, and then perform clustering to display
them on a map. I cannot see anything in the upcoming APIs that allows
me access to this sort of data.

I've looked athttp://search.twitter.com/search.json?geocode=40.757929%2C-73.985506 
%...,
but that only gives tweets within a certain radius, and only up to  
100
at a time. This isn't practical when I need to identify on a map  
where

perhaps thousands of tweets have happened over an extended time
period. I've looked elsewhere and can't see anything that would help
our situation, save the firehose. I know it says don't contact  
twitter

about access, they'll contact you, but there is no way to launch our
app without access to it.

I would love to hear any suggestions people might have as to how I
could perform the queries I need to perform, or perhaps alternative
techniques I have neglected to think of.

Thanks,
Kallin Nagelberg


--
Raffi Krikorian
Twitter Platform Team
ra...@twitter.com | @raffi






[twitter-dev] Re: expanded geocoding APIs

2009-11-02 Thread John Kalucki

The sample resource is just that, a sample. The default access level
quite a lot of data. You can also request a higher sample (the
gardenhose) if your project needs a higher proportion of the
statuses.

Allowing a geo predicate on the Streaming API would be very useful
thing indeed.

-John Kalucki
http://twitter.com/jkalucki
Services, Twitter Inc.

On Nov 2, 9:27 am, Walter Smulders walter.smuld...@gmail.com wrote:
 You could look at the Streaming API, more 
 specifically:http://stream.twitter.com/1/statuses/sample.json. I don't know 
 if this
 is a full stream of new public tweets or not (could someone specify
 this for me too please?), but it looks like a nice start...

 On Nov 2, 10:37 am, Kal kallin.nagelb...@gmail.com wrote:

  Hi everyone. I've been working on a twitter app with a small team for
  about half a year now that is focused on geocoding and mapping of
  tweets. Work so far has been done with dummy data, since the geocoding
  APIs aren't available yet. I've been looking at how I might use the
  upcoming APIs to access real twitter geo data, but it doesn't seem
  possible to get the data that we need.

  Right now in our test application we have a database of fake tweets
  that include lat/lon coordinates. This allows us to do queries for
  specific regions, periods of time, etc. For example, we need to know
  how many tweets were made within a certain rectangular area (someone's
  mobile screen) within the last hour, week etc. Right now I can get all
  of the tweets in one query, and then perform clustering to display
  them on a map. I cannot see anything in the upcoming APIs that allows
  me access to this sort of data.

  I've looked 
  athttp://search.twitter.com/search.json?geocode=40.757929%2C-73.985506%...,
  but that only gives tweets within a certain radius, and only up to 100
  at a time. This isn't practical when I need to identify on a map where
  perhaps thousands of tweets have happened over an extended time
  period. I've looked elsewhere and can't see anything that would help
  our situation, save the firehose. I know it says don't contact twitter
  about access, they'll contact you, but there is no way to launch our
  app without access to it.

  I would love to hear any suggestions people might have as to how I
  could perform the queries I need to perform, or perhaps alternative
  techniques I have neglected to think of.

  Thanks,
  Kallin Nagelberg


[twitter-dev] Lists API

2009-11-02 Thread Michael Steuer
With all the discussions on this mailing list about the Lists API, can
someone please confirm, is the API now available to all developers or all of
you in some sort of preferred position?

Thanks,

Michael.


[twitter-dev] Re: PHP Libraries for OAuth

2009-11-02 Thread shiplu
For PHP, there is a pecl extension.

-- 
A K M Mokaddim
http://talk.cmyweb.net
http://twitter.com/shiplu
Stop Top Posting !!
বাংলিশ লেখার চাইতে বাংলা লেখা অনেক ভাল


[twitter-dev] Re: Lists API

2009-11-02 Thread Marcel Molina

It's available to all developers and has been since last Thursday.

There are still some tweaks to be made but everything that works now
should continue to be supported along side the changes and additions
that will be introduced.

On Mon, Nov 2, 2009 at 9:48 AM, Michael Steuer mste...@gmail.com wrote:
 With all the discussions on this mailing list about the Lists API, can
 someone please confirm, is the API now available to all developers or all of
 you in some sort of preferred position?

 Thanks,

 Michael.



-- 
Marcel Molina
Twitter Platform Team
http://twitter.com/noradio


[twitter-dev] Re: Truncated URLs

2009-11-02 Thread Marcel Molina

I believe in that case the url is just truncated and gone. I believe
this only works when shortening it with bit.ly still wouldn't make the
tweet fewer than 140 characters. Though it seems unfortunate to lose
the url, in a sense you aren't missing data because *no one* gets that
url so ultimately it doesn't really exist :)

I'd imagine this is fairly rare, yes? I'd recommend just giving up and
skipping the tweet if the url isn't fully formed.

On Mon, Nov 2, 2009 at 6:51 AM, Adam Green a...@vibemetrix.com wrote:

 I'm extracting URLs from tweets, and some of them are truncated at the
 end of a tweet. The URL ends up as something like http://domain...

 I can't find anything in the API that will let me get the full URL, so
 I assume it is lost. Is this correct, or is there some trick to get
 back the entire URL before truncation?




-- 
Marcel Molina
Twitter Platform Team
http://twitter.com/noradio


[twitter-dev] Re: Lists API

2009-11-02 Thread Michael Steuer

Ah, great... I must have missed that announcement!

Thanks,

Michael.


On 11/2/09 10:05 AM, Marcel Molina mar...@twitter.com wrote:

 
 It's available to all developers and has been since last Thursday.
 
 There are still some tweaks to be made but everything that works now
 should continue to be supported along side the changes and additions
 that will be introduced.
 
 On Mon, Nov 2, 2009 at 9:48 AM, Michael Steuer mste...@gmail.com wrote:
 With all the discussions on this mailing list about the Lists API, can
 someone please confirm, is the API now available to all developers or all of
 you in some sort of preferred position?
 
 Thanks,
 
 Michael.
 
 




[twitter-dev] Re: Subscribed Lists

2009-11-02 Thread Marcel Molina

There is, in a sense, an API for resolving a list id by passing in a
slug. It's the show resource for a list. You'll either get a 404
(which means the slug no longer exist) or you'll get the list payload
which will include the id.

On Sun, Nov 1, 2009 at 11:29 PM, Rich rhyl...@gmail.com wrote:

 Using ID only for me is fine, except in the case we mention.  If there
 was a REST api to find a list ID based on a slug then it would mean we
 could still resolve @screen_name/list_name links otherwise we wouldn't
 be able to replicate it, except by brute force which would use yet
 more API calls.

 On Nov 1, 6:14 pm, Marcel Molina mar...@twitter.com wrote:
 Resolving a @screen_name/list_name reference in a tweet is a
 compelling argument for making the url parameter polymorphic and not
 deprecating the use of slugs. I will cogitate.





 On Sun, Nov 1, 2009 at 10:09 AM,  kaiser.ma...@gmail.com wrote:
  I have to second Rich on this - ID-only is flawed, as twitter supports 
  hotlinking lists by name (@username/slug) in tweets, and links that to the 
  list page. If clients want to offer the same behavior, this is not 
  possible if the API only supports IDs (or would require a potentially 
  large number of additional requests to get the user's lists and page 
  through them to find the one mentioned).

  Marco
  

  -Original Message-
  From: Marcel Molina mar...@twitter.com
  Date: Sun, 1 Nov 2009 10:02:31
  To: twitter-development-talk@googlegroups.com
  Subject: [twitter-dev] Re: Subscribed Lists

  Currently it's still slug. It hasn't been updated yet. When it is
  updated it will for some period of transition accept a slug or an id
  but eventually support for the slug in the url will be removed
  entirely.

  On Sun, Nov 1, 2009 at 2:14 AM, Rich rhyl...@gmail.com wrote:

  Can we get some form of confirmation on the list slug/id issue.  At
  the moment calling by ID doesn't work anyway so it's only using the
  slug.

  My preference would be to allow either (in a similar way to the other
  REST api's where you can use user id or screenName)

  On Oct 31, 10:04 pm, twittelator and...@stone.com wrote:
  :user/lists/subscriptions.:format

  gets the lists that the user has subscribed to.

  Andrew Stone
  Twitter / @twittelatorhttp://www.stone.com
  got iPhone?
         http://tinyurl.com/twitpro
         http://tinyurl.com/intentionizer
         http://tinyurl.com/gesture-buy
         http://tinyurl.com/igraffiti
         http://tinyurl.com/talkingpics
         http://tinyurl.com/mobilemix
         http://tinyurl.com/soundbite
         http://tinyurl.com/icreated
         http://tinyurl.com/pulsar-app

  On Oct 30, 5:00 am, David Neubauer davidneubauer.gro...@gmail.com
  wrote:

   Has any figured out how to get a the lists I'm subscribed to. I didn't
   realize how much I'd want this part of it. Please say it's coming...

   -Original Message-
   From: twitter-development-talk@googlegroups.com

   [mailto:twitter-development-t...@googlegroups.com] On Behalf Of Jeremy 
   Felt
   Sent: Thursday, October 29, 2009 8:16 PM
   To: Twitter Development Talk
   Subject: [twitter-dev] Re: Updates to the List API (list descriptions,
   cursoring lists of lists, finding by list id rather than slug  more
   consistent names)

   It appears that user/lists.xml only shows lists that are created by
   the user and not those that they follow.

   Any change coming to that or am I missing a way to see all lists that
   a user follows?

   Thanks,
   Jeremy

   On Oct 28, 3:00 pm, Marcel Molina mar...@twitter.com wrote:
Two additions and two changes to the List API will be deployed in the
next few days:

* List descriptions
We're adding a description to every list. You'll be able to specify a
description when you create or update a list and the description will
be included in the payload.

* Cursoring through lists of lists
All resources that return a list of lists will include next and
previous cursors and will accept a :cursor parameter.

* Finding by list id rather than slug
When you change the name of a list, the slug will be updated to
reflect that change. That means using the slug in the url for
resources to operate on lists requires the onerous task of validating
that the slug for the list you are about to do something with hasn't
been updated since the last time you stored its slug. What a 
nightmare
:-)

Every list also has an id. This value won't change. We'll be changing
the API to replace all instances of a list slug in urls to be list 
ids
instead.

* Consistent names
The terminology we've used thus far for people you follow with a list
is members. The terminology for people who are following a list is
subscribers. We're going to mirror the terminology used for users and
change it to followers and following respectively.

So:

/:user/lists/:list_id/memberships 

[twitter-dev] Re: Lists API

2009-11-02 Thread kaiser . marco

Can I translate that into 'the current URL to get a list using the slug will 
not be deprecated'?

Marco


-Original Message-
From: Marcel Molina mar...@twitter.com
Date: Mon, 2 Nov 2009 10:05:03 
To: twitter-development-talk@googlegroups.com
Subject: [twitter-dev] Re: Lists API


It's available to all developers and has been since last Thursday.

There are still some tweaks to be made but everything that works now
should continue to be supported along side the changes and additions
that will be introduced.

On Mon, Nov 2, 2009 at 9:48 AM, Michael Steuer mste...@gmail.com wrote:
 With all the discussions on this mailing list about the Lists API, can
 someone please confirm, is the API now available to all developers or all of
 you in some sort of preferred position?

 Thanks,

 Michael.



-- 
Marcel Molina
Twitter Platform Team
http://twitter.com/noradio



[twitter-dev] Re: Lists API

2009-11-02 Thread Marcel Molina

You may (until further notice) ;-)

On Mon, Nov 2, 2009 at 10:12 AM,  kaiser.ma...@gmail.com wrote:

 Can I translate that into 'the current URL to get a list using the slug will 
 not be deprecated'?

 Marco
 

 -Original Message-
 From: Marcel Molina mar...@twitter.com
 Date: Mon, 2 Nov 2009 10:05:03
 To: twitter-development-talk@googlegroups.com
 Subject: [twitter-dev] Re: Lists API


 It's available to all developers and has been since last Thursday.

 There are still some tweaks to be made but everything that works now
 should continue to be supported along side the changes and additions
 that will be introduced.

 On Mon, Nov 2, 2009 at 9:48 AM, Michael Steuer mste...@gmail.com wrote:
 With all the discussions on this mailing list about the Lists API, can
 someone please confirm, is the API now available to all developers or all of
 you in some sort of preferred position?

 Thanks,

 Michael.



 --
 Marcel Molina
 Twitter Platform Team
 http://twitter.com/noradio





-- 
Marcel Molina
Twitter Platform Team
http://twitter.com/noradio


[twitter-dev] Re: update_delivery_device method

2009-11-02 Thread Marcel Molina

Please file a bug about this on our issue tracker if you haven't already:
http://code.google.com/p/twitter-api/issues/list

Thanks.

On Wed, Oct 28, 2009 at 11:55 PM, DustyReagan dustyrea...@gmail.com wrote:

 I was playing around with the account/update_delivery_device method.

 It seems to behave like this:

 device=sms:im - Does nothing
 device=none - Turns device updates off

 Neither sms or im turn device updates back on.

 Are there any plans for this method to be updated or deprecated?




-- 
Marcel Molina
Twitter Platform Team
http://twitter.com/noradio


[twitter-dev] API Wiki - Cannots per Method

2009-11-02 Thread Peter Denton
Hello all,

I have been working in my spare time on creating a list of things you
cannot do per method in the api. Basically, I went back through many
questions from the dev group and see a lot of questions were basically the
result of people not knowing the rules of the API. So they would ask Can
I do this? ad someone would answer No. So I devised a solution along the
lines of lists per method of things you cannot do. One example would be:

   -  You *cannot* modify the source parameter (i.e. from web) without
   registering your application in *Twitter oAuth*

It occurred to me results would be better if I created a simple system where
the community could go to a page and add cannot items to a list, per
method, and in the end Ryan and Alex would have nice additional content to
add, for both human reference and search.

Before I get too far along, I wanted to see if the community would
participate in this. i.e. would you actually take 10-15 minutes and add
items to a list of a method you know well. I know Alex has expressed
interest in these lists being developed, so its not going to be a wasted
effort, however, without any participation, it wont be of much help.

As always, this is an effort to help reduce noise/redundancy on the list --
not an app. We are in the process of launching a new service, so it would be
approx 3 weeks from now, when I would have something for people to use.

Cheers
Peter


[twitter-dev] False positives on protected status

2009-11-02 Thread Tim Haines
Hey guys,

Is anyone observing twitter returning false positives on user's protected
status?  i.e. saying they're protected when they're not?

Tim.


[twitter-dev] Re: Lists API

2009-11-02 Thread Marco Kaiser
thank you :)

2009/11/2 Marcel Molina mar...@twitter.com


 You may (until further notice) ;-)

 On Mon, Nov 2, 2009 at 10:12 AM,  kaiser.ma...@gmail.com wrote:
 
  Can I translate that into 'the current URL to get a list using the slug
 will not be deprecated'?
 
  Marco
  
 
  -Original Message-
  From: Marcel Molina mar...@twitter.com
  Date: Mon, 2 Nov 2009 10:05:03
  To: twitter-development-talk@googlegroups.com
  Subject: [twitter-dev] Re: Lists API
 
 
  It's available to all developers and has been since last Thursday.
 
  There are still some tweaks to be made but everything that works now
  should continue to be supported along side the changes and additions
  that will be introduced.
 
  On Mon, Nov 2, 2009 at 9:48 AM, Michael Steuer mste...@gmail.com
 wrote:
  With all the discussions on this mailing list about the Lists API, can
  someone please confirm, is the API now available to all developers or
 all of
  you in some sort of preferred position?
 
  Thanks,
 
  Michael.
 
 
 
  --
  Marcel Molina
  Twitter Platform Team
  http://twitter.com/noradio
 
 



 --
 Marcel Molina
 Twitter Platform Team
 http://twitter.com/noradio



[twitter-dev] Re: warning for rate limit that causes ban

2009-11-02 Thread Peter Denton
Hi AKM,
I think that would allow a spammer to come as close as possible without
being banned. I have seen it mentioned you should email a...@twitter.com with
your use case and let them know what you are doing, to reduce chances of
being banned.

Cheers
Peter

On Mon, Nov 2, 2009 at 1:06 PM, shiplu shiplu@gmail.com wrote:

 Is there any way to get warned about hitting a possible rate limit
 which may cause ban?
 It may be as a header or content.

 --
 A K M Mokaddim
 http://talk.cmyweb.net
 http://twitter.com/shiplu
 Stop Top Posting !!
 বাংলিশ লেখার চাইতে বাংলা লেখা অনেক ভাল
 Sent from Dhaka, Bangladesh



[twitter-dev] Re: Subscribed Lists

2009-11-02 Thread Rich

Thanks for that Marcel, well if it's decided to completely abandon
slugs I'll have to go down that route.

Any idea on whether both call types will be allowed yet?  Obviously
the main lookups will are quick to switch between, just this
@screen_name/list_name that'll take more work if we can't use the
slug.

On Nov 2, 6:12 pm, Marcel Molina mar...@twitter.com wrote:
 There is, in a sense, an API for resolving a list id by passing in a
 slug. It's the show resource for a list. You'll either get a 404
 (which means the slug no longer exist) or you'll get the list payload
 which will include the id.





 On Sun, Nov 1, 2009 at 11:29 PM, Rich rhyl...@gmail.com wrote:

  Using ID only for me is fine, except in the case we mention.  If there
  was a REST api to find a list ID based on a slug then it would mean we
  could still resolve @screen_name/list_name links otherwise we wouldn't
  be able to replicate it, except by brute force which would use yet
  more API calls.

  On Nov 1, 6:14 pm, Marcel Molina mar...@twitter.com wrote:
  Resolving a @screen_name/list_name reference in a tweet is a
  compelling argument for making the url parameter polymorphic and not
  deprecating the use of slugs. I will cogitate.

  On Sun, Nov 1, 2009 at 10:09 AM,  kaiser.ma...@gmail.com wrote:
   I have to second Rich on this - ID-only is flawed, as twitter supports 
   hotlinking lists by name (@username/slug) in tweets, and links that to 
   the list page. If clients want to offer the same behavior, this is not 
   possible if the API only supports IDs (or would require a potentially 
   large number of additional requests to get the user's lists and page 
   through them to find the one mentioned).

   Marco
   

   -Original Message-
   From: Marcel Molina mar...@twitter.com
   Date: Sun, 1 Nov 2009 10:02:31
   To: twitter-development-talk@googlegroups.com
   Subject: [twitter-dev] Re: Subscribed Lists

   Currently it's still slug. It hasn't been updated yet. When it is
   updated it will for some period of transition accept a slug or an id
   but eventually support for the slug in the url will be removed
   entirely.

   On Sun, Nov 1, 2009 at 2:14 AM, Rich rhyl...@gmail.com wrote:

   Can we get some form of confirmation on the list slug/id issue.  At
   the moment calling by ID doesn't work anyway so it's only using the
   slug.

   My preference would be to allow either (in a similar way to the other
   REST api's where you can use user id or screenName)

   On Oct 31, 10:04 pm, twittelator and...@stone.com wrote:
   :user/lists/subscriptions.:format

   gets the lists that the user has subscribed to.

   Andrew Stone
   Twitter / @twittelatorhttp://www.stone.com
   got iPhone?
          http://tinyurl.com/twitpro
          http://tinyurl.com/intentionizer
          http://tinyurl.com/gesture-buy
          http://tinyurl.com/igraffiti
          http://tinyurl.com/talkingpics
          http://tinyurl.com/mobilemix
          http://tinyurl.com/soundbite
          http://tinyurl.com/icreated
          http://tinyurl.com/pulsar-app

   On Oct 30, 5:00 am, David Neubauer davidneubauer.gro...@gmail.com
   wrote:

Has any figured out how to get a the lists I'm subscribed to. I 
didn't
realize how much I'd want this part of it. Please say it's coming...

-Original Message-
From: twitter-development-talk@googlegroups.com

[mailto:twitter-development-t...@googlegroups.com] On Behalf Of 
Jeremy Felt
Sent: Thursday, October 29, 2009 8:16 PM
To: Twitter Development Talk
Subject: [twitter-dev] Re: Updates to the List API (list 
descriptions,
cursoring lists of lists, finding by list id rather than slug  more
consistent names)

It appears that user/lists.xml only shows lists that are created by
the user and not those that they follow.

Any change coming to that or am I missing a way to see all lists that
a user follows?

Thanks,
Jeremy

On Oct 28, 3:00 pm, Marcel Molina mar...@twitter.com wrote:
 Two additions and two changes to the List API will be deployed in 
 the
 next few days:

 * List descriptions
 We're adding a description to every list. You'll be able to 
 specify a
 description when you create or update a list and the description 
 will
 be included in the payload.

 * Cursoring through lists of lists
 All resources that return a list of lists will include next and
 previous cursors and will accept a :cursor parameter.

 * Finding by list id rather than slug
 When you change the name of a list, the slug will be updated to
 reflect that change. That means using the slug in the url for
 resources to operate on lists requires the onerous task of 
 validating
 that the slug for the list you are about to do something with 
 hasn't
 been updated since the last time you stored its slug. What a 
 nightmare
 :-)

 Every 

[twitter-dev] Re: Lists API

2009-11-02 Thread Rich

Ah perfect, I guess that means you can ignore my post in the other
thread :)

Right then my list implementation is ready to go!  Now to battle
Apple's approval process!

On Nov 2, 6:15 pm, Marcel Molina mar...@twitter.com wrote:
 You may (until further notice) ;-)





 On Mon, Nov 2, 2009 at 10:12 AM,  kaiser.ma...@gmail.com wrote:

  Can I translate that into 'the current URL to get a list using the slug 
  will not be deprecated'?

  Marco
  

  -Original Message-
  From: Marcel Molina mar...@twitter.com
  Date: Mon, 2 Nov 2009 10:05:03
  To: twitter-development-talk@googlegroups.com
  Subject: [twitter-dev] Re: Lists API

  It's available to all developers and has been since last Thursday.

  There are still some tweaks to be made but everything that works now
  should continue to be supported along side the changes and additions
  that will be introduced.

  On Mon, Nov 2, 2009 at 9:48 AM, Michael Steuer mste...@gmail.com wrote:
  With all the discussions on this mailing list about the Lists API, can
  someone please confirm, is the API now available to all developers or all 
  of
  you in some sort of preferred position?

  Thanks,

  Michael.

  --
  Marcel Molina
  Twitter Platform Team
 http://twitter.com/noradio

 --
 Marcel Molina
 Twitter Platform Teamhttp://twitter.com/noradio


[twitter-dev] Re: Subscribed Lists

2009-11-02 Thread Marcel Molina

Both will be allowed.

On Mon, Nov 2, 2009 at 1:34 PM, Rich rhyl...@gmail.com wrote:

 Thanks for that Marcel, well if it's decided to completely abandon
 slugs I'll have to go down that route.

 Any idea on whether both call types will be allowed yet?  Obviously
 the main lookups will are quick to switch between, just this
 @screen_name/list_name that'll take more work if we can't use the
 slug.

 On Nov 2, 6:12 pm, Marcel Molina mar...@twitter.com wrote:
 There is, in a sense, an API for resolving a list id by passing in a
 slug. It's the show resource for a list. You'll either get a 404
 (which means the slug no longer exist) or you'll get the list payload
 which will include the id.





 On Sun, Nov 1, 2009 at 11:29 PM, Rich rhyl...@gmail.com wrote:

  Using ID only for me is fine, except in the case we mention.  If there
  was a REST api to find a list ID based on a slug then it would mean we
  could still resolve @screen_name/list_name links otherwise we wouldn't
  be able to replicate it, except by brute force which would use yet
  more API calls.

  On Nov 1, 6:14 pm, Marcel Molina mar...@twitter.com wrote:
  Resolving a @screen_name/list_name reference in a tweet is a
  compelling argument for making the url parameter polymorphic and not
  deprecating the use of slugs. I will cogitate.

  On Sun, Nov 1, 2009 at 10:09 AM,  kaiser.ma...@gmail.com wrote:
   I have to second Rich on this - ID-only is flawed, as twitter supports 
   hotlinking lists by name (@username/slug) in tweets, and links that to 
   the list page. If clients want to offer the same behavior, this is not 
   possible if the API only supports IDs (or would require a potentially 
   large number of additional requests to get the user's lists and page 
   through them to find the one mentioned).

   Marco
   

   -Original Message-
   From: Marcel Molina mar...@twitter.com
   Date: Sun, 1 Nov 2009 10:02:31
   To: twitter-development-talk@googlegroups.com
   Subject: [twitter-dev] Re: Subscribed Lists

   Currently it's still slug. It hasn't been updated yet. When it is
   updated it will for some period of transition accept a slug or an id
   but eventually support for the slug in the url will be removed
   entirely.

   On Sun, Nov 1, 2009 at 2:14 AM, Rich rhyl...@gmail.com wrote:

   Can we get some form of confirmation on the list slug/id issue.  At
   the moment calling by ID doesn't work anyway so it's only using the
   slug.

   My preference would be to allow either (in a similar way to the other
   REST api's where you can use user id or screenName)

   On Oct 31, 10:04 pm, twittelator and...@stone.com wrote:
   :user/lists/subscriptions.:format

   gets the lists that the user has subscribed to.

   Andrew Stone
   Twitter / @twittelatorhttp://www.stone.com
   got iPhone?
          http://tinyurl.com/twitpro
          http://tinyurl.com/intentionizer
          http://tinyurl.com/gesture-buy
          http://tinyurl.com/igraffiti
          http://tinyurl.com/talkingpics
          http://tinyurl.com/mobilemix
          http://tinyurl.com/soundbite
          http://tinyurl.com/icreated
          http://tinyurl.com/pulsar-app

   On Oct 30, 5:00 am, David Neubauer davidneubauer.gro...@gmail.com
   wrote:

Has any figured out how to get a the lists I'm subscribed to. I 
didn't
realize how much I'd want this part of it. Please say it's coming...

-Original Message-
From: twitter-development-talk@googlegroups.com

[mailto:twitter-development-t...@googlegroups.com] On Behalf Of 
Jeremy Felt
Sent: Thursday, October 29, 2009 8:16 PM
To: Twitter Development Talk
Subject: [twitter-dev] Re: Updates to the List API (list 
descriptions,
cursoring lists of lists, finding by list id rather than slug  more
consistent names)

It appears that user/lists.xml only shows lists that are created by
the user and not those that they follow.

Any change coming to that or am I missing a way to see all lists 
that
a user follows?

Thanks,
Jeremy

On Oct 28, 3:00 pm, Marcel Molina mar...@twitter.com wrote:
 Two additions and two changes to the List API will be deployed in 
 the
 next few days:

 * List descriptions
 We're adding a description to every list. You'll be able to 
 specify a
 description when you create or update a list and the description 
 will
 be included in the payload.

 * Cursoring through lists of lists
 All resources that return a list of lists will include next and
 previous cursors and will accept a :cursor parameter.

 * Finding by list id rather than slug
 When you change the name of a list, the slug will be updated to
 reflect that change. That means using the slug in the url for
 resources to operate on lists requires the onerous task of 
 validating
 that the slug for the list you are about to do something with 
 hasn't
 

[twitter-dev] Re: PHP Libraries for OAuth

2009-11-02 Thread jmathai

I think it will benefit all users of the library to document the
method names for every call.  While it's somewhat trivial to determine
the method names it still required just an ounce of brain power.  That
ounce should be save for other tasks :).

It's been on my todo list to document them all, but I've been lazy :)

On Nov 1, 3:21 pm, Michael Mokrysz m...@46bit.com wrote:
 Thanks to both of you, having taken a better look at epitwitter's code
 I'd have to agree that's it's best to switch. I still like to be able
 to pretty much copy and paste urls from the documentation rather than
 having think how to convert it into the (albeit ingenious) conversion
 method EpiTwitter uses so I think I'll probably rewrite the __call
 function a little but keep the rest of the code.


[twitter-dev] Re: Lists API

2009-11-02 Thread Sean Scott
Apologies, i must have missed it as well.

On Mon, Nov 2, 2009 at 10:10 AM, Michael Steuer mste...@gmail.com wrote:


 Ah, great... I must have missed that announcement!

 Thanks,

 Michael.


 On 11/2/09 10:05 AM, Marcel Molina mar...@twitter.com wrote:

 
  It's available to all developers and has been since last Thursday.
 
  There are still some tweaks to be made but everything that works now
  should continue to be supported along side the changes and additions
  that will be introduced.
 
  On Mon, Nov 2, 2009 at 9:48 AM, Michael Steuer mste...@gmail.com
 wrote:
  With all the discussions on this mailing list about the Lists API, can
  someone please confirm, is the API now available to all developers or
 all of
  you in some sort of preferred position?
 
  Thanks,
 
  Michael.
 
 





-- 
Sean Scott
cell: 612.867.8133
portfolio: http://www.flickr.com/photos/92876...@n00/sets/72157613990263453/
profile: http://www.linkedin.com/profile?viewProfile=key=2242610
blog: http://www.twofortyeight.com/
other: http://twitter.com/kalisurfer


[twitter-dev] Firehose Sample Geo Only

2009-11-02 Thread Scott Wilcox

Hi Folks,

After seeing Kal's post earlier, I  was wondering its its possible to  
filter a set of statuses only to be returned if they have geodata  
(other statuses aren't useful to me for this project). Is this possible?

Scott.


[twitter-dev] Does stream API return protected tweets?

2009-11-02 Thread Adam Green

I see that the user data in a stream API response has a protected
field. Does this mean that the stream may return protected tweets, and
it is the developer's responsibility to watch for this and ignore
those tweets? Or should I assume that I can use any tweet in the
stream? The stream API doc says nothing about this.


[twitter-dev] Re: Lists API

2009-11-02 Thread Sean Scott
List API is in Beta.  If you're in the beta you can play with it.  If you're
not in the Beta you can't play with it just yet

On Mon, Nov 2, 2009 at 9:48 AM, Michael Steuer mste...@gmail.com wrote:

  With all the discussions on this mailing list about the Lists API, can
 someone please confirm, is the API now available to all developers or all of
 you in some sort of preferred position?

 Thanks,

 Michael.




-- 
Sean Scott
cell: 612.867.8133
portfolio: http://www.flickr.com/photos/92876...@n00/sets/72157613990263453/
profile: http://www.linkedin.com/profile?viewProfile=key=2242610
blog: http://www.twofortyeight.com/
other: http://twitter.com/kalisurfer


[twitter-dev] Re: Firehose Sample Geo Only

2009-11-02 Thread Raffi Krikorian


hi scott.

unfortunately, not currently.  right now you need to filter through  
the statuses to see ones that have a populated geo tag.



Hi Folks,

After seeing Kal's post earlier, I  was wondering its its possible to
filter a set of statuses only to be returned if they have geodata
(other statuses aren't useful to me for this project). Is this  
possible?


Scott.


--
Raffi Krikorian
Twitter Platform Team
ra...@twitter.com | @raffi






[twitter-dev] Re: Does stream API return protected tweets?

2009-11-02 Thread John Kalucki

Protected statuses are not currently available on the Streaming API.
Only public statuses are available. I clarified the Wiki on this
point.

-John Kalucki
http://twitter.com/jkalucki
Services, Twitter Inc.

On Nov 2, 12:56 pm, Adam Green a...@vibemetrix.com wrote:
 I see that the user data in a stream API response has a protected
 field. Does this mean that the stream may return protected tweets, and
 it is the developer's responsibility to watch for this and ignore
 those tweets? Or should I assume that I can use any tweet in the
 stream? The stream API doc says nothing about this.


[twitter-dev] Is image shrinking broken?

2009-11-02 Thread TCI

I am noticing an increase in the number of avatar images which do not
get shrinked in the smaller versions. It is most noticeable in the
twitter.com homepage as the images load very slowly from top to
bottom. How are your clients handling this? In my case I am assuming
the shrinking is working and therefore my page load times are being
affected.

Example:

http://a3.twimg.com/profile_images/506101471/Copy__2__of_Francesca__4__bigger.jpg
http://a3.twimg.com/profile_images/506101471/Copy__2__of_Francesca__4__normal.jpg
http://a3.twimg.com/profile_images/506101471/Copy__2__of_Francesca__4__mini.jpg

are all the same...


[twitter-dev] Oauth API not updating statuses consistently

2009-11-02 Thread Enlai

Sorry if this is a dumb question but I can't find an answer online.
This is happening right now so I thought I'd see if something is up
with the API.

Sometimes, I get no response from the status update post and other
times, I get a response with a successful post result. However, the
text in the post shows the previous successful post rather than the
one I just posted.

What does this mean? Has some rate been tripped?

Thanks
Enlai


[twitter-dev] Re: Incorrect signature returned for Lists API

2009-11-02 Thread Nelu Lazar

And an update fot the EPI library: http://bit.ly/3KODt1


On Nov 2, 10:53 am, Nelu Lazar cont...@nelulazar.com wrote:
 Figured the answer for the issue above, for @jmathai's EPITwitter
 library, here is the call code that works:

 $twitterOAuthObj-{'get_'.(string)strtolower
 ($username).'ListsMemberships'}(array(...));

 - @NeluLazar

 On Nov 2, 10:37 am, Nelu Lazar cont...@nelulazar.com wrote:



  I am experiencing Incorrect signature responses while requesting any
  Lists API XMLs.

  hash
    request/tweetvisor/lists/subscriptions.xml/request
    errorIncorrect signature/error
  /hash

  I tried various methods, with no success: POST, GET, HTTPS (default),
  HTTP. It only happens to Lists API calls, all other released API calls
  are working fine.

  If anyone know what's going on, please advise. Thanks,

  - @NeluLazar


[twitter-dev] Re: Incorrect signature returned for Lists API

2009-11-02 Thread jmathai

Nelu,

While that works, I suggest using the ID over the username since a
username with camel case will break the path regex.  This should work
with the newest version of the library from Github.

I'm considering including an option to pass in the url as a string in
the 2.0 version of the library.

Jaisen

On Nov 2, 7:53 am, Nelu Lazar cont...@nelulazar.com wrote:
 Figured the answer for the issue above, for @jmathai's EPITwitter
 library, here is the call code that works:

 $twitterOAuthObj-{'get_'.(string)strtolower
 ($username).'ListsMemberships'}(array(...));

 - @NeluLazar

 On Nov 2, 10:37 am, Nelu Lazar cont...@nelulazar.com wrote:

  I am experiencing Incorrect signature responses while requesting any
  Lists API XMLs.

  hash
    request/tweetvisor/lists/subscriptions.xml/request
    errorIncorrect signature/error
  /hash

  I tried various methods, with no success: POST, GET, HTTPS (default),
  HTTP. It only happens to Lists API calls, all other released API calls
  are working fine.

  If anyone know what's going on, please advise. Thanks,

  - @NeluLazar


[twitter-dev] Re: Oauth API not updating statuses consistently

2009-11-02 Thread Raffi Krikorian

Hi Enlai.

Can you provide more information, please?

If you experience times that there is no response, do you mean that
the request is timing out?

As for getting a successful response, yet the status not updating
could be caused by sending tweets with the same text as a tweet you
sent recently.

Either way, I don't know which of these, if any, are afflicting you.
Can you provide more information as to what precisely you are issuing
to the API, and what precisely is it responding with?

Thanks!



On Nov 2, 2009, at 9:45 PM, Enlai en...@3jam.com wrote:


 Sorry if this is a dumb question but I can't find an answer online.
 This is happening right now so I thought I'd see if something is up
 with the API.

 Sometimes, I get no response from the status update post and other
 times, I get a response with a successful post result. However, the
 text in the post shows the previous successful post rather than the
 one I just posted.

 What does this mean? Has some rate been tripped?

 Thanks
 Enlai


[twitter-dev] Re: Is image shrinking broken?

2009-11-02 Thread Michael Steuer

I have noticed the same recently. This should probably be logged as a bug?
It's a core twitter bug though, not with the API...


On 11/2/09 9:25 PM, TCI ticoconid...@gmail.com wrote:

 
 I am noticing an increase in the number of avatar images which do not
 get shrinked in the smaller versions. It is most noticeable in the
 twitter.com homepage as the images load very slowly from top to
 bottom. How are your clients handling this? In my case I am assuming
 the shrinking is working and therefore my page load times are being
 affected.
 
 Example:
 
 http://a3.twimg.com/profile_images/506101471/Copy__2__of_Francesca__4__bigger.
 jpg
 http://a3.twimg.com/profile_images/506101471/Copy__2__of_Francesca__4__normal.
 jpg
 
http://a3.twimg.com/profile_images/506101471/Copy__2__of_Francesca__4__mini.jp
g
 
 are all the same...




[twitter-dev] Re: Lists API

2009-11-02 Thread Michael Steuer
Well, I¹m in no beta, but it all seems to be accessible and working..
According to Marcel Molina, the API went public/open last Thursday. I guess
it wasn¹t announced (not on the group at least).


On 11/2/09 9:57 AM, Sean Scott sean@gmail.com wrote:

 List API is in Beta.  If you're in the beta you can play with it.  If you're
 not in the Beta you can't play with it just yet
 
 On Mon, Nov 2, 2009 at 9:48 AM, Michael Steuer mste...@gmail.com wrote:
 With all the discussions on this mailing list about the Lists API, can
 someone please confirm, is the API now available to all developers or all of
 you in some sort of preferred position?
 
 Thanks,
 
 Michael. 
 
 



[twitter-dev] Re: Incorrect signature returned for Lists API

2009-11-02 Thread Michael Steuer

Hi Jaisen,

Doesn't Nelu's use of strtolower take care of your camel case concern?

I just posted a comment on your blog - it'd be great if you could publish a
couple lines around usage of your lib with the new lists URL structure etc.

Thanks so much, 

Michael.


On 11/2/09 9:51 PM, jmathai jmat...@gmail.com wrote:

 
 Nelu,
 
 While that works, I suggest using the ID over the username since a
 username with camel case will break the path regex.  This should work
 with the newest version of the library from Github.
 
 I'm considering including an option to pass in the url as a string in
 the 2.0 version of the library.
 
 Jaisen
 
 On Nov 2, 7:53 am, Nelu Lazar cont...@nelulazar.com wrote:
 Figured the answer for the issue above, for @jmathai's EPITwitter
 library, here is the call code that works:
 
 $twitterOAuthObj-{'get_'.(string)strtolower
 ($username).'ListsMemberships'}(array(...));
 
 - @NeluLazar
 
 On Nov 2, 10:37 am, Nelu Lazar cont...@nelulazar.com wrote:
 
 I am experiencing Incorrect signature responses while requesting any
 Lists API XMLs.
 
 hash
   request/tweetvisor/lists/subscriptions.xml/request
   errorIncorrect signature/error
 /hash
 
 I tried various methods, with no success: POST, GET, HTTPS (default),
 HTTP. It only happens to Lists API calls, all other released API calls
 are working fine.
 
 If anyone know what's going on, please advise. Thanks,
 
 - @NeluLazar




[twitter-dev] Re: Is image shrinking broken?

2009-11-02 Thread Zac Bowling

This happened a while back. Probably a regression. Their thumbnail
servers are not working or something.


Zac Bowling


[twitter-dev] how to get my application link to appear on Twitter profile pages(upper right side)?

2009-11-02 Thread Jacob

Hello,
My name Is Jacob and I'm from http://twitteranalyzer.com, can someone
suggest a way or a person to talk to in order to show my application
on Twitter profiles(upper right side), recently, I've noticed that
there are many applications showing on my profile page directing to
interesting applications.
can anyone tell me what to do in order to show my application link on
twitter profiles?

Thanks in advance,
Jacob


[twitter-dev] Re: how to get my application link to appear on Twitter profile pages(upper right side)?

2009-11-02 Thread Peter Denton
Hi Jacob,
The applications listed in that section are basically editors picks with
the exception of a few sponsored apps.

Its awesome Twitter does this because I have known a few individuals who
have been added to the rotation, so there is the possibility your app is
added.
Its basically up to you to create an app compelling enough to make the list.

Re: your second question, you must register you application with OAuth in
order to change the source parameter of your application status updates.

Cheers
Peter


On Mon, Nov 2, 2009 at 11:00 PM, Jacob yac...@gmail.com wrote:


 Hello,
 My name Is Jacob and I'm from http://twitteranalyzer.com, can someone
 suggest a way or a person to talk to in order to show my application
 on Twitter profiles(upper right side), recently, I've noticed that
 there are many applications showing on my profile page directing to
 interesting applications.
 can anyone tell me what to do in order to show my application link on
 twitter profiles?

 Thanks in advance,
 Jacob


[twitter-dev] Re: Incorrect signature returned for Lists API

2009-11-02 Thread jmathai

Michael,

You're actually right.  Didn't think about strtolower fixing the camel
casing issue.  Have a look at the last test case in EpiTwitterTest.php
for example usage.  I'll get around to increasing documentation soon
(I hope).

On Nov 2, 10:18 pm, Michael Steuer mste...@gmail.com wrote:
 Hi Jaisen,

 Doesn't Nelu's use of strtolower take care of your camel case concern?

 I just posted a comment on your blog - it'd be great if you could publish a
 couple lines around usage of your lib with the new lists URL structure etc.

 Thanks so much,

 Michael.

 On 11/2/09 9:51 PM, jmathai jmat...@gmail.com wrote:



  Nelu,

  While that works, I suggest using the ID over the username since a
  username with camel case will break the path regex.  This should work
  with the newest version of the library from Github.

  I'm considering including an option to pass in the url as a string in
  the 2.0 version of the library.

  Jaisen

  On Nov 2, 7:53 am, Nelu Lazar cont...@nelulazar.com wrote:
  Figured the answer for the issue above, for @jmathai's EPITwitter
  library, here is the call code that works:

  $twitterOAuthObj-{'get_'.(string)strtolower
  ($username).'ListsMemberships'}(array(...));

  - @NeluLazar

  On Nov 2, 10:37 am, Nelu Lazar cont...@nelulazar.com wrote:

  I am experiencing Incorrect signature responses while requesting any
  Lists API XMLs.

  hash
    request/tweetvisor/lists/subscriptions.xml/request
    errorIncorrect signature/error
  /hash

  I tried various methods, with no success: POST, GET, HTTPS (default),
  HTTP. It only happens to Lists API calls, all other released API calls
  are working fine.

  If anyone know what's going on, please advise. Thanks,

  - @NeluLazar


[twitter-dev] Re: how to get my application link to appear on Twitter profile pages(upper right side)?

2009-11-02 Thread Jacob

Hi Peter,
Thank you for replying,
My application is running for a year now and it is used by thousands
on Twitter users every day. and still, no mention from Twitter.
do you know the editor? or maybe you can connect me with someone who
is already published? my mail is yac...@gmail.com.
again, thank you for taking the time to help.
Jacob

On Nov 3, 9:08 am, Peter Denton petermden...@gmail.com wrote:
 Hi Jacob,
 The applications listed in that section are basically editors picks with
 the exception of a few sponsored apps.

 Its awesome Twitter does this because I have known a few individuals who
 have been added to the rotation, so there is the possibility your app is
 added.
 Its basically up to you to create an app compelling enough to make the list.

 Re: your second question, you must register you application with OAuth in
 order to change the source parameter of your application status updates.

 Cheers
 Peter



 On Mon, Nov 2, 2009 at 11:00 PM, Jacob yac...@gmail.com wrote:

  Hello,
  My name Is Jacob and I'm fromhttp://twitteranalyzer.com, can someone
  suggest a way or a person to talk to in order to show my application
  on Twitter profiles(upper right side), recently, I've noticed that
  there are many applications showing on my profile page directing to
  interesting applications.
  can anyone tell me what to do in order to show my application link on
  twitter profiles?

  Thanks in advance,
  Jacob