Re: [twitter-dev] New twitter.com uses an OAuth app called web?

2010-09-21 Thread Abraham Williams
I poked around how @Anywhere authenticates and makes request and put the results up on my blog: http://blog.abrah.am/2010/09/hacking-twitter-anywheres.html Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am

Re: [twitter-dev] Local trends near you user setting via API?

2010-09-21 Thread Abraham Williams
For users with the #newtwitter yes. But it is currently undocumented and not yet officially supported. http://app.apigee.com/console/apigee-console-snapshots-128331720_14a0ad88-4e01-4b1e-9af2-0f6e1280a3b1/rendersnapshotview Abraham - Abraham Williams | Hacker Advocate | http

Re: [twitter-dev] Re: Authorizing for partial control

2010-09-20 Thread Abraham Williams
simple scripts. On a side note Twitter is not a secure communication medium and should not be used for sensitive communication. Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask

Re: [twitter-dev] How is the newTwitter getting Replies to this Tweet?

2010-09-20 Thread Abraham Williams
Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask first [ ] private. On Mon, Sep 20, 2010 at 15:30, Taylor Singletary taylorsinglet...@twitter.com wrote: Hi Vega, #newtwitter

Re: [twitter-dev] Grease Monkey and #NewTwitter

2010-09-19 Thread Abraham Williams
Chrome supports userscripts minus a few custom GM APIs nativly http://blog.chromium.org/2010/02/4-more-extensions.html Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask

Re: [twitter-dev] Help for twitteroauth

2010-09-19 Thread Abraham Williams
automatically synced. Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask first [ ] private. On Wed, Sep 15, 2010 at 01:42, kilotto kilo...@gmail.com wrote: Hi all, I'm trying

Re: [twitter-dev] Re: oAuth and applications that run in the background

2010-09-09 Thread Abraham Williams
You can use a consumer pair in multiple scripts. If they are posting tweets keep in mind that it won't make sense to have Bob's Apple Stand posting tweets for Pete's Orange Cart. Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http://projects.abrah.am | http

Re: [twitter-dev] Get All Followers Using twitteroauth

2010-09-09 Thread Abraham Williams
writing a loop instead of manually specifying how many blocks of 100 it pulls in. $result100-users will be an array of users. Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask

Re: [twitter-dev] Re: OAuth 2.0 status?

2010-09-09 Thread Abraham Williams
Here is the breakdown of what @anywhere does for authentication: http://blog.abrah.am/2010/09/hacking-twitter-anywheres.html Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask

Re: [twitter-dev] oAuth and applications that run in the background

2010-09-08 Thread Abraham Williams
Here is some more info about using an access token for a single account: http://dev.twitter.com/pages/oauth_single_token Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask first

Re: [twitter-dev] understanding data returned in arrays.

2010-09-07 Thread Abraham Williams
Answers inline. Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask first [ ] private. On Tue, Sep 7, 2010 at 07:13, Bob Aiello robertjaie...@gmail.com wrote: Hi everyone

Re: [twitter-dev] Re: Missing oauth_verifier

2010-09-07 Thread Abraham Williams
If anyone has questions about the TwitterOAuth library feel free to contact me. Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask first [ ] private. On Tue, Sep 7, 2010 at 09

Re: [twitter-dev] Re: 400 response from twitterauth statuses/update call

2010-09-07 Thread Abraham Williams
Are you behind a proxy of some sort? Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask first [ ] private. On Tue, Sep 7, 2010 at 09:09, JC O'Donnell j...@springshare.com

Re: [twitter-dev] Bug Report - Status Update Error

2010-09-06 Thread Abraham Williams
TwitterOAuth does nothing more then parse error messages so Status is a duplicate. will be the actual error message in the body of the response. Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email

Re: [twitter-dev] Where Is the oauth_verifier ?

2010-09-05 Thread Abraham Williams
If you don't set a custom oauth_callback when you get your request token there will be no oauth_verifier. Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask first [ ] private

Re: [twitter-dev] twitter oauth incredibly slow?

2010-09-04 Thread Abraham Williams
that there is code somewhere that is waiting for a period of time? Have to broken down the different parts of the OAuth flow to see if a particular part is slow? Could just your connection to twitter.com from your server be slow? Abraham - Abraham Williams | Hacker Advocate | http://abrah.am

Re: [twitter-dev] Re: Twitter logout - hate to open this can of worms again

2010-09-04 Thread Abraham Williams
with their Twitter account, send them to twitter for Oauth once. When they return they'll still be logged in and you'll have the credentials for future use. Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am

Re: [twitter-dev] Re: Twitter logout - hate to open this can of worms again

2010-09-04 Thread Abraham Williams
is normally called security. OAuth as currently done with twitter only works when the app runs on a small number of secure servers. -- Bernd Stramm bernd.str...@gmail.com Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http://projects.abrah.am | http

Re: [twitter-dev] About OAuth

2010-09-04 Thread Abraham Williams
Have a look at http://gist.github.com/564882 Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask first [ ] private. On Thu, Sep 2, 2010 at 19:50, David dav...@alltraders.com

Re: [twitter-dev] A helper wrapper for Abraham Williams TwitterOAuth PHP wrapper

2010-09-04 Thread Abraham Williams
Awesome work Nicholas! I've added a link TwitterOAuth's projects page: http://github.com/abraham/twitteroauth/wiki/links Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask first

Re: [twitter-dev] 400 response from twitterauth statuses/update call

2010-09-04 Thread Abraham Williams
What error code is Twitter returning? You could be running into a rate limit. You should also check that the application is read/write and check on your twitter accounts connections page that it has been granted read/write permissions. Abraham - Abraham Williams | Hacker Advocate

Re: [twitter-dev] Twitter dev

2010-09-04 Thread Abraham Williams
Great having you around Zac and yay for learning ;) Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask first [ ] private. On Mon, Aug 30, 2010 at 22:38, Zac Bowling zbowl

Re: [twitter-dev] Re: Twitter logout - hate to open this can of worms again

2010-09-03 Thread Abraham Williams
If i don't want to manage an authentication system, risk storing passwords, make users go through the paint of yet another registration flow then I might consider just using Sign in with Twitter every time someone sign into my site. Abraham - Abraham Williams | Hacker Advocate | http

Re: [twitter-dev] Re: Simple status update

2010-09-03 Thread Abraham Williams
On Fri, Sep 3, 2010 at 18:29, Gerard M g...@rivershark.com wrote: I can (well, used to) update using three lines: Here are three lines to tweet with OAuth: http://gist.github.com/564882 Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http

Re: [twitter-dev] Re: Twitter logout - hate to open this can of worms again

2010-09-02 Thread Abraham Williams
There is no pragmatic way to sign a user out of twitter.com through the API. When a user logs out of your site send them to to twitter.com so they can sign out there or to a page explaining they should sign out of twitter.com Abraham - Abraham Williams | Hacker Advocate | http

Re: [twitter-dev] Re: Coming soon: a solution for Open Source applications using OAuth with the Twitter API

2010-09-01 Thread Abraham Williams
that includes an API key. They just install the extension and off they go. http://github.com/abraham/omnitweet/downloads Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask first

Re: [twitter-dev] followed_by_my_follows or follows_in_common via API?

2010-08-26 Thread Abraham Williams
You are welcome to use my Intersect API: http://github.com/abraham/intersect/blob/master/README Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask first [ ] private. On Wed

Re: [twitter-dev] Re: list api create_all method not working

2010-08-23 Thread Abraham Williams
Jim, What is your value for $users? Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask first [ ] private. On Mon, Aug 23, 2010 at 08:55, Jim Chevalier jcheval...@gmail.com

Re: [twitter-dev] Access Token updating on App page

2010-08-17 Thread Abraham Williams
You can track the issue report (created June 2009) here: http://code.google.com/p/twitter-api/issues/detail?id=669 Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask first

Re: [twitter-dev] oauth_signature

2010-08-17 Thread Abraham Williams
My library handles all the OAuth signatures automatically. If you read the documentation for TwitterOAuth it will get you started with using the library. Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am

Re: [twitter-dev] user:statuses/friends and the following field - feature request

2010-08-17 Thread Abraham Williams
The following element was deprecated in May 2009 as it was unreliable. Maybe the deprecation has seen been deprecated... http://groups.google.com/group/twitter-development-talk/browse_thread/thread/42ba883b9f8e3c6e?tvc=2 Abraham - Abraham Williams | Hacker Advocate | http://abrah.am

Re: [twitter-dev] OAuth Newb Question

2010-08-16 Thread Abraham Williams
Have a look at my PHP library TwitterOAuth. It is easy to get started on and supports just about everything. Feel free to ping me if you have any questions. http://github.com/abraham/twitteroauth Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http

Re: [twitter-dev] Re: Open Source Android/Twitter Application

2010-08-16 Thread Abraham Williams
I've been asking about the Twitter for Android code for months. I guess priorities have changed. You can find the locked down code repository on Google Code: http://code.google.com/p/twitter-for-android/ Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http

Re: [twitter-dev] official twitter equivalent of tweetimag.es

2010-08-15 Thread Abraham Williams
http://dev.twitter.com/doc/get/users/profile_image/:screen_name Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask first [ ] private. On Sun, Aug 15, 2010 at 13:11, Kyle

Re: [twitter-dev] Introducing the Tweet Button

2010-08-12 Thread Abraham Williams
= http://platform.twitter.com/widgets.js;/script Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask first [ ] private. On Thu, Aug 12, 2010 at 11:30, Clint Ecker clintec

Re: [twitter-dev] How do I get latest tweets with OAuth

2010-08-11 Thread Abraham Williams
You should reformat your request from: $connection-get(user_timeline/{$username}.json?count={$number}); to: $connection-get(statuses/user_timeline, array(screen_name = $username, count = $number)); TwitterOAuth automatically adds the type. Abraham - Abraham Williams | Hacker

Re: [twitter-dev] Is it this simple - OAUTH PHP Transition from Basic Authentication

2010-08-11 Thread Abraham Williams
on http://dev.twitter.com/apps. Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask first [ ] private. On Wed, Aug 11, 2010 at 10:21, Skygazer marc.bouc...@gmail.com wrote: Using

Re: [twitter-dev] Cannot redeclare class OAuthException

2010-08-08 Thread Abraham Williams
It means you are including the OAuthException class twice in your project. Once is probably from a PECL OAuth extension. Have a look at: http://github.com/abraham/twitteroauth/issues/issue/24 Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http

Re: [twitter-dev] Need inputs to implement Twitter app using xAuth

2010-07-28 Thread Abraham Williams
Twitter4j supports xAuth: http://goo.gl/ZmM2 Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask first [ ] private. On Wed, Jul 28, 2010 at 02:29, Sambath Chandran sambat

Re: [twitter-dev] Re: Twitter oAuth for PHP, some advice needed

2010-07-24 Thread Abraham Williams
The temporary credentials need to be store while the user goes to twitter.com and authenticates. Sessions are awesome for this so I use it. You can use other mechanisms if you want. Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http://projects.abrah.am

Re: [twitter-dev] Re: Twitter oAuth for PHP, some advice needed

2010-07-23 Thread Abraham Williams
']); $access_token = $connection-getAccessToken($_REQUEST['oauth_verifier']); var_dump($access_token); Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask first [ ] private. On Fri, Jul 23

Re: [twitter-dev] Re: Twitter oAuth for PHP, some advice needed

2010-07-23 Thread Abraham Williams
into the quick and dirty code instead of pulling from a session. Keep in mind that you can only use the request token once so if you don't print the access token the first time you will have to do it all again. Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http

Re: [twitter-dev] Error following with oAuth

2010-07-17 Thread Abraham Williams
Are you trying to follow a user or enable SMS notifications for a user? What error message are you getting? Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask first [ ] private

Re: [twitter-dev] Re: Error following with oAuth

2010-07-17 Thread Abraham Williams
You will want to use the friendships method. http://dev.twitter.com/doc/post/friendships/create/:id $opResult = $connection-post('friendships/create/xx'); Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am

Re: [twitter-dev] How is this a solution?

2010-07-17 Thread Abraham Williams
There is an open issue for SSL support on dev.twitter.com - http://code.google.com/p/twitter-api/issues/detail?id=1665 Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask first

Re: [twitter-dev] Re: abrahams twitteroauth issue

2010-07-17 Thread Abraham Williams
It should be possible to do everything the REST API currently supports other then uploading images which will be in the next beta. Feel free to send me code samples of what you are having issues with. Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http

Re: [twitter-dev] San Francisco Social App Workshop July 24- with @themattharris

2010-07-15 Thread Abraham Williams
I will be presenting as well so now you are guaranteed a good time! :-P Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask first [ ] private. On Thu, Jul 8, 2010 at 14:05

Re: [twitter-dev] statuses/update usage Replying a tweet

2010-07-14 Thread Abraham Williams
You have to include the@ sceen_name of the user you are replying to in the text of the status. On Jul 14, 2010 12:45 PM, lu5ceh ignacio.santo...@gmail.com wrote: i trying to use statuses/update API function replying a tweet and isnt works

Re: [twitter-dev] Friendship/Create usage

2010-07-12 Thread Abraham Williams
You are missing the *s*. Try: $result89 = $connection-post('friendships/create/'.BOT_UID); Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask first [ ] private. On Mon, Jul

Re: [twitter-dev] Keep it real

2010-06-26 Thread Abraham Williams
Thank you all for the awesome words everyone. I'm always looking for interesting projects, startups, and friends so be sure to think of me. :) @abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email

Re: [twitter-dev] Re: xAuth - favorites/create - bug - 401 error

2010-06-16 Thread Abraham Williams
favorites/create should be a POST. Try: $response = $connection-post( 'favorites/create', array ('id' = $status_id ) ); Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask first

Re: [twitter-dev] Re: xAuth - favorites/create - bug - 401 error

2010-06-16 Thread Abraham Williams
Let us continue this on the issue tracker so we don't spam the list as much: http://github.com/abraham/twitteroauth/issues#issue/33 Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x

[twitter-dev] Keep it real

2010-06-14 Thread Abraham Williams
or @abraham. Oh. I have several Twitter API related blog posts in draft so be sure to look for them on http://blog.abrah.am/. I'll be around :) Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email

Re: [twitter-dev] share on twitter button

2010-06-11 Thread Abraham Williams
You can use the @Anywhere TweetBox: http://dev.twitter.com/anywhere/begin#tweetbox Or send them to https://twitter.com/?status=text+goes+here Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email

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

2010-06-11 Thread Abraham Williams
The lat/long you are passing to the API are in the Yellow Sea so Twitter is 404ing as it does not have any places near there. http://hurl.it/hurls/db27e3e9bce56f7f9a8209b935af6a25d5fa5677/2775b260053e31ce25c46a87d56ced51f8583b43 Abraham - Abraham Williams | Hacker Advocate | http

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

2010-06-11 Thread Abraham Williams
Interestingly max_resuls=2 works: http://hurl.it/hurls/6521ca0d04a03b5c340682f275d8d013834b8518/8020ff7c547eab6c510b5f368375e8b01c1684b7 Might as well file a bug report: http://code.google.com/p/twitter-api/issues/list Abraham - Abraham Williams | Hacker Advocate | http://abrah.am

Re: [twitter-dev] Twitter People Search 2010

2010-06-11 Thread Abraham Williams
The thread is old and from before the API method was available. Abraham - Abraham Williams | Hacker Advocate | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask first [ ] private. On Fri, Jun 11, 2010 at 10:15 AM

Re: [twitter-dev] Re: Twitter People Search 2010

2010-06-11 Thread Abraham Williams
is possible with current methods ? On 11 juin, 14:17, Abraham Williams 4bra...@gmail.com wrote: The thread is old and from before the API method was available. Abraham - Abraham Williams | Hacker Advocate |http://abrah.am @abraham |http://projects.abrah.am|http://blog.abrah.am

Re: [twitter-dev] t.co issue -- querying for original url in streaming search apis

2010-06-09 Thread Abraham Williams
Currently Search (and probably Streaming) returns results that match text in unshortened URLs not just in the text of the status. I doubt It would change now especially with t.co coming. Abraham - Abraham Williams | Developer for hire | http://abrah.am @abraham | http

Re: [twitter-dev] users/search query rate limit

2010-06-07 Thread Abraham Williams
Check out the rate limited section: http://apiwiki.twitter.com/Twitter-REST-API-Method:-users-search Abraham - Abraham Williams | Developer for hire | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask first [ ] private

Re: [twitter-dev] Identifying HTTP Auth sites

2010-06-07 Thread Abraham Williams
For accounts that POST new statuses this is pretty easy as you can just look at the user_timeline and check the source field for from API. Abraham - Abraham Williams | Developer for hire | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email

Re: [twitter-dev] Re: Redirect to user's profile page via API

2010-06-03 Thread Abraham Williams
twitter user's profile. Do you mean so that he is directed to the private pages of his profile rather than he public pages?- Nascondi testo citato - Mostra testo citato - -- Abraham Williams | Developer for hire | http://abrah.am @abraham | http://projects.abrah.am | http

Re: [twitter-dev] You both follow feature

2010-06-03 Thread Abraham Williams
-- Abraham Williams | Developer for hire | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask first [ ] private.

Re: [twitter-dev] Twitter Infographics Data

2010-06-03 Thread Abraham Williams
can find it at http://blog.pay4tweet.com/2010/06/02/18-tittilating-twitter-infographics-and-visualizations/ Thanks. -Mo @pay4tweet -- Abraham Williams | Developer for hire | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask

Re: [twitter-dev] Tweetbox with default text

2010-06-03 Thread Abraham Williams
. -- Abraham Williams | Developer for hire | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask first [ ] private.

Re: [twitter-dev] xAuth Permissions

2010-06-01 Thread Abraham Williams
that the ticket does not exist. The URL says: http://twitter.com/?kind=errormessage=Failed+to+update+user+with+new+properties:+Email+has+already+been+taken Is there a way to verify whether or not my request has been registered with their system? Thanks for you help, Jeff -- Abraham

Re: [twitter-dev] Re: xAuth Permissions

2010-06-01 Thread Abraham Williams
On Tue, Jun 1, 2010 at 10:06, jsleuth jsle...@gmail.com wrote: Abraham, is it usually a couple days from when the email is received or from the successful creation of a ticket? They should both happen within minutes of each other so my answer is yes. Abraham -- Abraham Williams | Developer

Re: [twitter-dev] [OAuth] twitter keeps refusing my token request

2010-06-01 Thread Abraham Williams
Failed to validate oauth signature and token Someone can spot the problem? Thanks in advance Arthur. -- Abraham Williams | Developer for hire | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask first [ ] private.

Re: [twitter-dev] Annotations Hackfest wiki page

2010-05-31 Thread Abraham Williams
that we'll use to coordinate everything this weekend. Let us know if you have any questions. https://apiwiki.twitter.com/Annotations-Hackfest-May-25th Best, rs -- Abraham Williams | Developer for hire | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email

Re: [twitter-dev] Twitter API - Grab profile pic URL

2010-05-31 Thread Abraham Williams
the default profile picture (http://s.twimg.com/a/1274899949/ images/default_profile_2_normal.png) and not the custom profile pic which is displayed on my twitter homepage. Any ideas? Bruce -- Abraham Williams | Developer for hire | http://abrah.am @abraham | http://projects.abrah.am

Re: [twitter-dev] Re: Uploading videos to Twitter using OAuth

2010-05-31 Thread Abraham Williams
http://www.twitvid.com/index.php?area=aboutaction=contact On Mon, May 31, 2010 at 21:19, Deepa deepapai0...@gmail.com wrote: Could you please suggest the link where I can ask for TwitVid library with OAuth support. On May 31, 9:01 am, Abraham Williams 4bra...@gmail.com wrote: I would think

Re: [twitter-dev] Re: Uploading videos to Twitter using OAuth

2010-05-30 Thread Abraham Williams
call in TwitVid library that allows to set the value of the parameter 'x_verify_credentials_authorization'? Thanks in advance. On May 29, 11:16 pm, Abraham Williams 4bra...@gmail.com wrote: x_verify_credentials_authorization: Required if no username/password sent. OAuth Echo Authorization

Re: [twitter-dev] 2nd tweet using oAuth with Scribe always fails

2010-05-29 Thread Abraham Williams
access.token.verb=POST access.token.url=https://api.twitter.com/oauth/access_token #callback.url=http://kivanotify.appspot.com/oauth-callback callback.url=http://localhost:8080/oauth-callback Any help/clarification is appreciated. Gero -- Abraham Williams | Developer for hire | http

Re: [twitter-dev] Re: Uploading videos to Twitter using OAuth

2010-05-29 Thread Abraham Williams
x_verify_credentials_authorization: Required if no username/password sent. OAuth Echo Authorization header. Abraham On Sat, May 29, 2010 at 10:42, Deepa deepapai0...@gmail.com wrote: On May 29, 3:53 am, Abraham Williams 4bra...@gmail.com wrote: Twitvid supports OAuth Echo:http

Re: [twitter-dev] Re: users/lookup seems not to be working

2010-05-29 Thread Abraham Williams
valid user ids or screen names. The error you are receiving is because you are sending a user_id of 0 which is not a valid account. Maybe try with your screen name first. ... -- Abraham Williams | Developer for hire | http://abrah.am @abraham | http://projects.abrah.am | http

Re: [twitter-dev] Re: Current TwitterOAuth API won't display authorization page

2010-05-28 Thread Abraham Williams
of the code requires OAuthRequest's second parameter to be an array, and another part requires it to be a scalar! I know that can't be so, but I don't see what it wants. Again, I'm stymied by the lack of API documentation. -- Abraham Williams | Developer for hire | http://abrah.am @abraham | http

Re: [twitter-dev] Re: Twitter OAuth Timestamps

2010-05-26 Thread Abraham Williams
been trying to resolve the issue for us to move on to something more important. Our OAuth implementation works fine otherwise. Well, as well as the rest of the Twitter API works, anyway. Cheers. --ejw Eric Woodward Email: e...@nambu.com -- Abraham Williams

Re: [twitter-dev] TwitterOAuth, two authentication calls, one works, one fails... why?

2010-05-26 Thread Abraham Williams
this thing for weeks, and I'm stumped. I'm open to any sort of advice on what the problem might be, or how to identify it, or how to work around it without identifying it. -- Abraham Williams | Developer for hire | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am

Re: [twitter-dev] Pagination - Twitter’s people yo u follow

2010-05-25 Thread Abraham Williams
enlightenment? Thanks in advance -- Abraham Williams | Developer for hire | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask first [ ] private.

Re: [twitter-dev] Newbie question - please help.

2010-05-22 Thread Abraham Williams
was favorited? Another alternative: instead of doing this with the public timeline (ideal solution) do it for all tweets by the users a person is following. Can this be done? Thanks for your help. Gustavo -- Abraham Williams | Developer for hire | http://abrah.am @abraham | http

Re: [twitter-dev] Facing problem.

2010-05-19 Thread Abraham Williams
data in xml format and developed whole code using xml(key-value pair) There is no proxy like thing as I hv uploaded files on server and dealing directly with it. Please help me on this. Thank you in advance. Rushi. On Wed, May 19, 2010 at 1:27 AM, Abraham Williams 4bra...@gmail.comwrote

Re: [twitter-dev] Twitter app on iPhone

2010-05-19 Thread Abraham Williams
Tweetie has that there is no public end point for such as signing up for an account or suggested user lists? -- Abraham Williams | Developer for hire | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask first [ ] private.

Re: [twitter-dev] Re: Basic authentication

2010-05-18 Thread Abraham Williams
applications there is no third party, just the end-user and twitter. Basic Auth + https would be just fine for that. +1 I don't access anyone's account information except my own. This is a huge hassle for no gain at all for me. Not that I expect that to change. -- Abraham Williams

Re: [twitter-dev] Help in twitteroauth By Abraham Williams

2010-05-18 Thread Abraham Williams
Allaou -- Abraham Williams | Developer for hire | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask first [ ] private.

Re: [twitter-dev] Facing problem.

2010-05-18 Thread Abraham Williams
-value) of xml format as it was giving previously. twitter is a class and ratelimit method has no arguments passed neither before nor now. your help will be greatly appreciated, Rushi On Mon, May 17, 2010 at 9:49 PM, Abraham Williams 4bra...@gmail.comwrote: Did you recently update

Re: [twitter-dev] Providing mobile and online service seamless integation.

2010-05-18 Thread Abraham Williams
during this synchronization process, so each integration point has both set of consumer keys/secret. -- Abraham Williams | Developer for hire | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask first [ ] private.

Re: [twitter-dev] Facing problem.

2010-05-17 Thread Abraham Williams
paste the same URL in address bar, I get rate_limit_status. why this is so? Rushi. -- Abraham Williams | Developer for hire | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask first [ ] private.

Re: [twitter-dev] OAUTH problems!

2010-05-17 Thread Abraham Williams
find any sources to make me understand the whole issue ! could anyone help plz ? Regards, Feras Allaou -- Abraham Williams | Developer for hire | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask first [ ] private.

Re: [twitter-dev] mobile.twitter.com doesn't remember logins

2010-05-17 Thread Abraham Williams
. -- Abraham Williams | Developer for hire | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask first [ ] private.

Re: [twitter-dev] OAuth issue, using mostly supplied code.

2010-05-16 Thread Abraham Williams
the OAuth_Token key I get an expired token error, but changing the other keys doesn't have any effect, so it might be related to the keys I'm using? Any help would be GREATLY appreciated! -- Abraham Williams | Developer for hire | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am

Re: [twitter-dev] WebSockets protocol for streaming API

2010-05-15 Thread Abraham Williams
benefit from the upcoming user streams. Thanks a lot for all your hard work, Cezar Sá Espinola @cezarsa -- Abraham Williams | Developer for hire | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask first [ ] private.

Re: [twitter-dev] Re: alert() in anywhere.js

2010-05-15 Thread Abraham Williams
for this edge case. Instead of users complaining about broken hovercards, they are complaining about alert dialogs. Larry On May 14, 8:38 pm, Abraham Williams 4bra...@gmail.com wrote: Both of which are issues that will pretty much stop @Anywhere from working and need to be noticed

Re: [twitter-dev] Re: alert() in anywhere.js

2010-05-15 Thread Abraham Williams
, Abraham Williams 4bra...@gmail.com wrote: I agree that @Anywhere should degrade gracefully when configured properly on unsupported platforms and not prompt incorrect alert()s. But I do think alert()s are probably the best way to notify developers of incorrect installations

Re: [twitter-dev] alert() in anywhere.js

2010-05-14 Thread Abraham Williams
mechanism? Grepping through anywhere.js I found two instances of alert(): alert(To set up @anywhere, please provide a client ID); alert(No version matching +Z); Cheers Larry -- Abraham Williams | Developer for hire | http://abrah.am @abraham | http://projects.abrah.am | http

Re: [twitter-dev] Leveraging the Twitter API and scraping out tweets to only include tweets with links

2010-05-13 Thread Abraham Williams
it's pretty straight-forward to do? I am not a developer. Thanks! -- Abraham Williams | Developer for hire | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask first [ ] private.

Re: [twitter-dev] which PHP libraries will still be ok to use with OAuth (Jun 30th)

2010-05-12 Thread Abraham Williams
, which one do you consider to be the best?) Thank you -- Abraham Williams | Developer for hire | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask first [ ] private.

Re: [twitter-dev] Re: did they lift the limits on direct messages?

2010-05-12 Thread Abraham Williams
! -- Abraham Williams | Developer for hire | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask first [ ] private.

Re: [twitter-dev] Background Image twitteroauth library

2010-05-12 Thread Abraham Williams
Images are not supported in the current version. Look for the next beta soon. Abraham On Tue, May 11, 2010 at 22:08, Eric eric.gaygesh...@sbcglobal.net wrote: Hi Everyone, I'm attempting to use the twittoauth library by Abraham Williams and am having a little trouble. I am able

Re: [twitter-dev] retweets of retweets

2010-05-12 Thread Abraham Williams
a retweet like so: RT @ RT @ in that case, does my retweet show up as a retweet of the original tweet or of the retweet i actually retweeted? is it possible to have a chain of retweets? -- Abraham Williams | Developer for hire | http://abrah.am @abraham | http://projects.abrah.am

Re: [twitter-dev] Service Application

2010-05-12 Thread Abraham Williams
and authorize ? or did i miss something, any comments or links to things to read that i may have missed would be appreciated thanks! -- Abraham Williams | Developer for hire | http://abrah.am @abraham | http://projects.abrah.am | http://blog.abrah.am This email is: [ ] shareable [x] ask first

<    1   2   3   4   5   6   7   8   9   10   >