[twitter-dev] Re: Allowing users of my social networking site to send their posts to twitter if they want?

2011-06-17 Thread MasonK
Thanks to both for your reply. Greg, thanks, I will look into the oauth API. I figured there was a way to store the authorization. -- Twitter developer documentation and resources: https://dev.twitter.com/doc API updates via Twitter: https://twitter.com/twitterapi Issues/Enhancements Tracker: htt

[twitter-dev] Re: Devnest Recap

2011-06-17 Thread Jason Costa
Just to close the loop on this thread, these videos have been posted. You can find them here: http://www.youtube.com/twitterapi On Jun 7, 8:29 am, Jason Kolb wrote: > I'd love to see the videos as well, are they still going to be posted? > > Thanks! -- Twitter developer documentation and resou

[twitter-dev] Re: Error with Web Intents Javascript Events

2011-06-17 Thread MManalo
Removed. On Jun 17, 12:09 pm, Scott Wilcox wrote: > Common sense says don't post a private URL to a public mailing list. > > Sent from my iPhone > > On 17 Jun 2011, at 19:13, "MManalo" wrote: > > > Hi Matt, > > > I'm not sure if you'll be able to access this or not, but here's > > hoping you mig

[twitter-dev] Re: Search API

2011-06-17 Thread Stefan
The best way to do this is to use the streaming API and catch all the tweets containing "stanley cup" when they happen. The search API is very limited and you will never get more then a couple of thousand results in the past. Oftentimes much less. Best regards, Stefan -- Twitter developer docume

Re: [twitter-dev] Re: Error with Web Intents Javascript Events

2011-06-17 Thread Scott Wilcox
Common sense says don't post a private URL to a public mailing list. Sent from my iPhone On 17 Jun 2011, at 19:13, "MManalo" wrote: > Hi Matt, > > I'm not sure if you'll be able to access this or not, but here's > hoping you might be able to. Unfortunately it's the only test page we > have rig

Re: [twitter-dev] Re: Does “~” need encode?

2011-06-17 Thread Abraham Williams
"Characters in the unreserved character set as defined by RFC3986 (ALPHA, DIGIT, "-", ".", "_", "~") MUST NOT be encoded." http://tools.ietf.org/html/rfc5849#section-3.6 Abraham - Abraham Williams | InboxQ | abrah.am @abraham

[twitter-dev] Re: Error with Web Intents Javascript Events

2011-06-17 Thread MManalo
Hi Matt, I'm not sure if you'll be able to access this or not, but here's hoping you might be able to. Unfortunately it's the only test page we have right now, and the one in which we detected that IE7 was not firing any sort of event. Please keep this link confidential for security purposes. htt

[twitter-dev] Re: Does “~” need encode?

2011-06-17 Thread Felix Oldenburg
I had the same issue with the ~ encoding. If ~ gets encoded to %7E the signature is wrong, but with a plain ~ it's fine. But if u look at abraham's php twitter library, which also implements the needed oauth functionality, u can see he also uses the non encoded ~. ( https://github.com/abraham/twit

Re: [twitter-dev] How do I register a non-existent app?

2011-06-17 Thread tamara.mr.willi...@gmail.com
Hi Taylor: Thank you for your help :D. I registered the app using my Twitter name and public url so now I have the required codes and I can continue with the software design and hopefully, quickly move to test plan and coding. Tamara -- Twitter developer documentation and resources: https://d

[twitter-dev] Re: error 401 from oauth, starting a few days ago

2011-06-17 Thread arlomedia
Just giving this a bump for Taylor. For anyone else, does the oauth-php example script work with your accounts? It works for me when accessing the public timeline as shown in the example, but if I change the request URL to access my user timeline (protected or unprotected) I get the authorization

Re: [twitter-dev] Re: Does “~” need encode?

2011-06-17 Thread kamesh SmartDude
There might be some other problem in u r signature generation. but not about the "~" url encoding. //kamesh On Fri, Jun 17, 2011 at 1:57 PM, LoVenus wrote: > Thank you for your reply. > > But as I said, if encode "~", signature will be wrong. > > -- > Twitter developer documentation and resour

[twitter-dev] Re: Does “~” need encode?

2011-06-17 Thread LoVenus
Thank you for your reply. But as I said, if encode "~", signature will be wrong. -- Twitter developer documentation and resources: https://dev.twitter.com/doc API updates via Twitter: https://twitter.com/twitterapi Issues/Enhancements Tracker: https://code.google.com/p/twitter-api/issues/list Ch

Re: [twitter-dev] Does “~” need encode?

2011-06-17 Thread kamesh SmartDude
Yes the character "~" should be encoded http://www.blooberry.com/indexdot/html/topics/urlencoding.htm //kamesh On Fri, Jun 17, 2011 at 12:41 PM, LoVenus wrote: > Hi > I'm using twitter statuses/update API to tweet a status. > e.g > This is what I'm going to tweet: "~". > > I create a signature

[twitter-dev] Does “~” need encode?

2011-06-17 Thread LoVenus
Hi I'm using twitter statuses/update API to tweet a status. e.g This is what I'm going to tweet: "~". I create a signature base string, following the ruleswe're using UTF-8 characters here and need to properly URL-encode them. So, "~" become "%7E". But,it response a error message:signature I