Re: [twitter-dev] Re: Post from C#

2010-05-26 Thread Andrew Badera
Cool. Just keep in mind a lot of the .NET OAuth stuff, especially on the
Twitter side, is somewhat out of date or incomplete.

--ab


On Wed, May 26, 2010 at 2:51 PM, Al  wrote:

> Thanks for the link.
> I also found this page:   http://apiwiki.twitter.com/OAuth-Examples
> AL.
>
> On May 26, 9:29 am, Al  wrote:
> > I am a new to programming, what I want to do is post a comment to my
> > twitter page
> > using C#. Something simple amd direct, I have started my C# app with
> > the
> > Twitterizer api. Is this api a good place to start? I just want to
> > contact my Twitter page and post a message.
> >
> > Thanks AL.
>


Re: [twitter-dev] Post from C#

2010-05-26 Thread Andrew Badera
http://www.twitterizer.net/wiki/Main_Page

Also, GIYF.

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera


On Wed, May 26, 2010 at 12:29 PM, Al  wrote:

> I am a new to programming, what I want to do is post a comment to my
> twitter page
> using C#. Something simple amd direct, I have started my C# app with
> the
> Twitterizer api. Is this api a good place to start? I just want to
> contact my Twitter page and post a message.
>
> Thanks AL.
>


Re: [twitter-dev] Hard lesson learned

2010-05-23 Thread Andrew Badera
Miguel,

This 'lesson' has been 'learned' and re-learned many times over, here on the
Twitter dev list and on the oauth list. One would hope that at some point
this issue would rise to enough prominence to get people in charge of
implementation, and sig participants in general, to do something about it.
The common developer these days is not a super savvy geek, and even the
super savvy geeks among us waste time on this issue, again and again.

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera


On Sun, May 23, 2010 at 5:52 PM, Miguel de Icaza
wrote:

> Hello guys,
>
>Perhaps the most frustrating piece in dealing with the OAuth
> configuration is that the twitter OAuth page talks casually about
> "urlEncode".  You need to "urlEncode this" and "urlEncode that".  What
> the page does not say is that "urlEncode" is not a standard
> urlEncoding system that web developers are used to.  The urlEncode
> required by OAuth signatures is actually "percent encode" and it is
> *required* that you use percent encoding for anything but a small
> subset of characters.
>
>The only characters that do not require percent encoding are:
>
> unreserved = a through z, A through Z, 0 through 9 and  '-', '.', '_',
> '~'
>
> Miguel
>


Re: [twitter-dev] StatusCode is -1 and isCausedByNetworkIssue is true Help Me!!!

2010-05-13 Thread Andrew Badera
Wrong list. Try list for the library you're using. Twitter4j?

Andy Badera via HTC Incredible

On May 13, 2010 6:13 AM, "송록지기"  wrote:

The following pages on the server was created.
-

<%...@page contentType="text/xml;charset=utf-8" %>

<%@ page import="java.util.List"%>
<%@ page import="java.lang.System"%>
<%@ page import="twitter4j.Twitter"%>
<%@ page import="twitter4j.Tweet"%>
<%@ page import="twitter4j.Query"%>
<%@ page import="twitter4j.QueryResult"%>
<%@ page import="twitter4j.TwitterFactory"%>
<%@ page import="twitter4j.TwitterException"%>
<%
Twitter twitter = new TwitterFactory().getInstance();
Query query = new Query("twitter ");
QueryResult result = twitter.search(query);
for (Tweet tweet : result.getTweets()) {
%>

   
   
   
   

<%
   }
%>


But the result is output as shown below.
--

- 
 3
 -1
 null
 false
 false
 true
 

I am looking for now is for this reason.
Specific IP address of the server also try to disable the firewall,
the love that the results are terrible.
Please help. Please


Re: [twitter-dev] Really, You're not going to suspend @julianperretta?

2010-04-28 Thread Andrew Badera
What do you care why or why not someone is concerned with plagiarism?

John L Meyer: Twitter Women's Auxiliary Air Force, in effect!

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Wed, Apr 28, 2010 at 10:23 AM, John Meyer  wrote:
> On 4/28/2010 8:21 AM, Dossy Shiobara wrote:
>>
>> On 4/28/10 10:18 AM, John Meyer wrote:
>>>
>>> Spam I understand, but are you actually trying to report plagarism on a
>>> bloody tweet?  Are you kidding me?  We're you planning on selling that
>>> bit of wisdom somewhere? Spinning it off for a book deal?
>>
>> You mean, like @shitmydadsays?
>>
>
>
> I would assume that if you're bundling tweets that you send out for free to
> another format (aka a book) you would be adding some value in between the
> two.
>


Re: [twitter-dev] How to: Create a “send this to t witter” button on my website

2010-04-27 Thread Andrew Badera
www.google.com

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Tue, Apr 27, 2010 at 11:13 AM, Benelux  wrote:
> Hi
> I have been searching  for a tool like "twitthis" "twitme" to
> impliment on my dynamic website.
>
> Lots of little pluggin for WP or other blog,
> but I don't find a way to impliment it to my "stadard" website without
> the multiple popup and redirection like with http://twitthis.com/
>
> I just want to get the URL and injected it directly into the Twitter
> of the people that browse my site, to allowd them to twitt the page
> that interest them
>
> Can somone redirect me to a site where I can find those info's...
>
> many thanks
>
>
>
> --
> Subscription settings: 
> http://groups.google.com/group/twitter-development-talk/subscribe?hl=en
>


Re: [twitter-dev] .NET Code for the Streaming API

2010-04-26 Thread Andrew Badera
Sweet Shannon, I have my own implementation, but I'd love to see
someone else's. (TweetSharp didn't have one when I did mine.) I'll try
to find time to take a look, thanks for publishing, I hadn't got
around to publishing mine yet, too busy!

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Mon, Apr 26, 2010 at 8:10 PM, Shannon Whitley
 wrote:
> I've been working on a project that uses all .NET code to connect to the
> streaming api (HttpWebRequest & native JSON parsing).  Several people have
> already released code samples and many of the libraries have this
> functionality, but I needed to build my own app.  There were enough issues
> along the way that I decided my code might help someone else to get started.
>  If you have any comments or suggestions, please leave them on the blog
> post.
> http://www.voiceoftech.com/swhitley/?p=898


-- 
Subscription settings: 
http://groups.google.com/group/twitter-development-talk/subscribe?hl=en


Re: [twitter-dev] RE: FW Twitter Support

2010-04-26 Thread Andrew Badera
John,

Though I've disagreed with Dean's use and means of promoting of his
app since Day One, I hardly think his message rises to the level of
"threat." I think there's enough misinformation, disinformation,
irritation and anger floating around this list these days that the
last thing anyone needs is gratuitous drama, particularly on behalf of
someone NOT employed by Twitter and NOT directly addressed by Dean's
communication and possible intent of said communication.

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Mon, Apr 26, 2010 at 2:51 PM, John Meyer  wrote:
> On 4/26/2010 12:43 PM, Dean Collins wrote:
>>
>> John,
>>
>> I was trying to explain to users that this is an API tool, not some web
>> app that couldn't scale.
>>
>> People don't often understand the difference and I don't like wasting
>> time with support calls. Especially not for $10 sales.
>>
>> But like I said when I first launched this, I gave the code away for
>> free for months as I didn't want to spend the time supporting people.
>> Money wasn't the real motivation for getting this code created.
>>
>> I had the code created just to support other twitter accounts for other
>> projects I was working on.
>>
>> If Twitter decide that they will never allow the app to be approved for
>> use under the current brand then I'll just opensource the app and make
>> it free for anyone to use and download and everyone can get access to
>> register for their own oauth application process.
>>
>> Basically twitter will have to sort through the 10,000 api applications
>> to work out which ones are and aren't using my code.
>>
>
>
> I don't know about raffi, but that sounds pretty much like a threat to me.
>
>
> --
> Subscription settings:
> http://groups.google.com/group/twitter-development-talk/subscribe?hl=en
>


Re: [twitter-dev] Anybody else seeing "Unable to locate you. Try again" ??

2010-04-18 Thread Andrew Badera
Location has never worked for me in Win7 x64+Chrome (dev channel).

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Sun, Apr 18, 2010 at 9:57 PM, Abraham Williams <4bra...@gmail.com> wrote:
> Location used to work on the Windows beta of Chrome but stopped a week or
> two ago for me. It has never worked on my Mac though.
> Abraham
>
> On Sat, Apr 17, 2010 at 18:59, M. Edward (Ed) Borasky 
> wrote:
>>
>> On my Linux (openSUSE 11.2 with some of the advanced repositories) the
>> message "Unable to locate you. Try again" is showing up, and my tweets
>> aren't getting geotagged. Firefox 3.6.3, Google Chrome 5.0.375.9 dev and
>> Seamonkey 2.0.4 all do this, and it happens for both wired and wireless
>> connections.
>>
>> I'm pretty sure it's somewhere in the Linux stack beneath the browser -
>> the one time I booted one machine up in Windows, it worked in Firefox
>> 3.6.3 with a wireless connection. And it used to work on Linux with
>> Firefox. I haven't tried any other distros or rolling back to Firefox
>> 3.5. I might try a Lucid Lynx LiveCD just to see what happens, but I'd
>> rather get openSUSE to work, since I'm not planning to switch distros
>> just to get my tweets tagged. ;-)
>>
>> Is anyone else seeing this? The Firefox demo at
>> http://www.mozilla.com/en-US/firefox/geolocation/#geo-demo works!
>> Anything else I should be looking at? I can grab Wireshark traces but
>> don't know what to look for.
>> --
>> M. Edward (Ed) Borasky
>> borasky-research.net/m-edward-ed-borasky
>>
>> "A mathematician is a device for turning coffee into theorems." ~ Paul
>> Erdős
>>
>>
>> --
>> Subscription settings:
>> http://groups.google.com/group/twitter-development-talk/subscribe?hl=en
>
>
>
> --
> Abraham Williams | Developer for hire | http://abrah.am
> PoseurTech Labs | Projects | http://labs.poseurtech.com
> This email is: [ ] shareable [x] ask first [ ] private.
>


Re: [twitter-dev] Override Twitter application callback URL using CreateRequest().Authentication.GetAuthorizationUrl (or other mechanism)

2010-04-17 Thread Andrew Badera
Though you may get an answer here, this is a question better off on
the tweetsharp list/group/project site.

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Sat, Apr 17, 2010 at 1:15 PM, Rich  wrote:
> Windows 7 (64-bit), VS2008SP1, .NET3.5, C#, Windows Azure, TweetSharp
> 1.0
>
> I have a Twitter application with a Callback URL: http://twitterlocal.com/
> Mydefault.aspx
>
> This will do just fine for some of my use cases. On other occasions
> however, I want to call back to a different page.
>
> I tried the following, expecting that after the user entered their
> Twitter credentials that Twitter would return to “Myspecial.aspx”, but
> it instead returned to Mydefault.aspx  –
>
> String callback = “http://twitterlocal.com/Myspecial.aspx
> var authorizeUrl =
> FluentTwitter.CreateRequest().Authentication.GetAuthorizationUrl(request.Token,
> callback);
> Response.Redirect(authorizeUrl);
>
> Is a something else I should be doing, or is there another approach I
> should be taking?
>
>
> --
> Subscription settings: 
> http://groups.google.com/group/twitter-development-talk/subscribe?hl=en
>


Re: [twitter-dev] Recommended ways to demultiplex the search stream with thousands of searches

2010-04-16 Thread Andrew Badera
I know it's not Web 2.0-cool, but I'm writing to SQL Server 2008
(Standard, x64) and using fulltext indexing/searching from there. On
production hardware, I hardly see any real impact as far as latency
goes, even on busy predicates. I can't imagine that the
lighter-weight/more efficient Lucene would have a significantly
perceivable impact.

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Fri, Apr 16, 2010 at 6:59 PM, Mark McBride  wrote:
> One idea off the top of my head: write tweets to something like Lucene, and
> then rely on its more sophisticated query engine to pull tweets.  You'll
> sacrifice some latency here of course.
>   ---Mark
>
> http://twitter.com/mccv
>
>
> On Fri, Apr 16, 2010 at 3:47 PM, Jeffrey Greenberg
>  wrote:
>>
>> So I'm looking at the streaming api (track), and I've got thousands of
>> searches.  ( http://tweettronics.com ) I mainly need it to deal with
>> terms that are very high volume, and to deal search api rate limiting.
>>
>> The main difficulty I'm thinking about is the best way to de-multiplex
>> the stream back into the individual searches I'm trying to accomplish.
>>
>> 1. How do you handle if the searches are more complex than single
>> terms, but a boolean expression... Do you convert the boolean into
>> something like regex, and then run that regex on every tweet... So if
>> I have several thousand regexs and thousands of tweets, that's a huge
>> amount of processing just to demultiplex... But is that the way to go?
>> 2 And if the search is just a simple expression, do folks simply
>> demultiplex by doing a string search for each word in the search for
>> every received tweet... like above?
>>
>> I'm looking for recommended ways to demultiplex the search stream...
>>
>> Thanks,
>> jeffrey greenberg
>>
>>
>> --
>> Subscription settings:
>> http://groups.google.com/group/twitter-development-talk/subscribe?hl=en
>
>


Re: [twitter-dev] Re: Is it OK to store token in Windows Registry?

2010-04-16 Thread Andrew Badera
I think if you use a strong key with AES/Rijndael, you can use a
machine datastore, or even just a secure file in your app directory.
Or encrypted DB fields if you're using a DB. You can put the key in
the machine cert store, or you can bury the key in your deployed
binary.

That will protect you against 95%+ of curious/mildly malicious users.
That other 5%, and otherwise more malicious users, are going to
require a hugely disproportionate amount of effort and/or money to be
invested if you intend to beat them. That group is going to include
the hardcore sorts capable of starving CPUs in order to flip bits in
private keys of RSA -- feel free to try to program around that sort of
person, but you're wasting effort in a case like this, IM(H)O™.

--ab


On Thu, Apr 15, 2010 at 11:16 PM, Rich  wrote:
> I agree with the "obscure" comment.
>
> For better or worse, I am trying to design a solution for a semi-
> public machine, so multiple users may be using the same application
> installation, and each user has their own registry settings. (The
> other registry settings are innocuous, but I am trying to trade off
> user convenience with user security.)
>
> If I understand it correctly, the token secret is tied to a user-
> external-application tuple. If so, then just having the token secret
> would only allow a malicious 3rd-party to post a Twitter status using
> the authorized application. Since we require the use authenticate to
> Twitter at the start of each application session, I was hoping that
> this would mitigate the risk of storing the token secret I the
> registry. (Of course, I am also expecting the user of a semi-public
> machine to close the application when they are finished…)
>
> Further thoughts?
>
>
> On Apr 15, 7:53 am, Andrew Badera  wrote:
>> The Windows Registry is NOT "secure" -- it is at best "obscure."
>>
>> Is it a good place to store information? Maybe. Matter of opinion.
>> Consider a secured machine datastore as well. However anyone with
>> physical access to the machine has everything they need to access
>> anything they want, given a little patience and tech skill.
>>
>> Why do you need a "secure" location for a user token? It's just the
>> user who has access, right? Or are you referring to your application's
>> key, and not the user key? If so, there's really no good way to secure
>> that with current iterations of OAuth. The mechanism is fallible for
>> desktop apps. 2.0 may address some of that.
>>
>> ∞ Andy Badera
>> ∞ +1 518-641-1280 Google Voice
>> ∞ This email is: [ ] bloggable [x] ask first [ ] private
>> ∞ Google me:http://www.google.com/search?q=andrew%20badera
>>
>>
>>
>> On Thu, Apr 15, 2010 at 10:43 AM, Rich  wrote:
>> > My question is similar to this post <http://groups.google.com/group/
>> > twitter-development-talk/browse_thread/thread/
>> > 5d37e76f8efed028/2052210d4cd2bcea?lnk=gst&q=token#2052210d4cd2bcea>.
>>
>> > I am using TweetSharp 1.0 with a WPF 3.0 C# application.
>>
>> > I request that the user allow the desktop application to update their
>> > status at certain times in our application workflow. If the user
>> > grants permission, I store the access token and access token secret in
>> > the registry for use in future sessions.
>>
>> > I could encrypt the token secret before persisting in the registry,
>> > and decrypt before using in my call to Twitter, but the encryption key
>> > would still be in the desktop application. This seems a bit better
>> > than not encrypting the token secret, but is the gain in security
>> > significant?
>>
>> > --
>> > To unsubscribe, reply using "remove me" as the subject.- Hide quoted text -
>>
>> - Show quoted text -
>


Re: [twitter-dev] Is it OK to store token in Windows Registry?

2010-04-15 Thread Andrew Badera
The Windows Registry is NOT "secure" -- it is at best "obscure."

Is it a good place to store information? Maybe. Matter of opinion.
Consider a secured machine datastore as well. However anyone with
physical access to the machine has everything they need to access
anything they want, given a little patience and tech skill.

Why do you need a "secure" location for a user token? It's just the
user who has access, right? Or are you referring to your application's
key, and not the user key? If so, there's really no good way to secure
that with current iterations of OAuth. The mechanism is fallible for
desktop apps. 2.0 may address some of that.

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Thu, Apr 15, 2010 at 10:43 AM, Rich  wrote:
> My question is similar to this post  twitter-development-talk/browse_thread/thread/
> 5d37e76f8efed028/2052210d4cd2bcea?lnk=gst&q=token#2052210d4cd2bcea>.
>
> I am using TweetSharp 1.0 with a WPF 3.0 C# application.
>
> I request that the user allow the desktop application to update their
> status at certain times in our application workflow. If the user
> grants permission, I store the access token and access token secret in
> the registry for use in future sessions.
>
> I could encrypt the token secret before persisting in the registry,
> and decrypt before using in my call to Twitter, but the encryption key
> would still be in the desktop application. This seems a bit better
> than not encrypting the token secret, but is the gain in security
> significant?
>
>
> --
> To unsubscribe, reply using "remove me" as the subject.
>


Re: [twitter-dev] Streaming API - weird data in JSON text

2010-04-14 Thread Andrew Badera
2010/4/14 Mad Euchre :
> Can someone please tell me why some tweets have the following as the
> text?
>
> "text":"\uc624\ub298 \uc2dc\uac00\ucd1d\uc561\uc774 $AAPL \uc740
> $208.0B \uc774\uace0 $GOOG \uc740 $177.2B \ub124\uc694.
> \uadf8\ub3d9\uc548 \uc5c5\uce58\ub77d \ub4a4\uce58\ub77d\ud558\ub358
> \ub450 \ud68c\uc0ac\uc758 \uc2dc\uac00\ucd1d\uc561 \uacbd\uc7c1\uc740
> \uc544\uc774\ud328\ub4dc \ubc1c\ud45c\ub97c \uc804\ud6c4\ud574\uc11c
> \uc560\ud50c \ucabd\uc73c\ub85c \uae30\uc6b0\ub294 \uac83
> \uac19\uc2b5\ub2c8\ub2e4. \ubb3c\ub860 \ud5a5\ud6c4\uc5d0 \uc5b4\ub5bb
> \uac8c \ub420\uc9c...
>
> Thanks,
>
> Peter

Because not everyone speaks English and ASCII.

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera


-- 
To unsubscribe, reply using "remove me" as the subject.


Re: [twitter-dev] What's happening with Tweetie for Mac

2010-04-12 Thread Andrew Badera
Fred Thompson? What's Law & Order got to do with anything?

(Wilson?)

--ab



On Mon, Apr 12, 2010 at 12:10 PM, Jesse Stay  wrote:
> I think it's great that Twitter is finally being more transparent about all
> this.  I could argue they need to be more transparent (where do they plan to
> go in the analytics and enterprise spaces?), but it's about time.  They've
> finally drawn the line in the sand - now we need to adapt.  Yes, it's
> frustrating, but then again, 90% of businesses fail - it's the risk all of
> us took.  We either compete, or quit, and move on.  I don't get all the
> complaints - this is nothing new.  I've had half my features replaced by
> Twitter over the last few years (quite literally - just read my blog - I'm
> the chief complainer).  By now I realize that's either part of life (note:
> it's the same on Facebook, too - there's no escaping it), or I change my
> focus to where Twitter is not my core and I instead use Twitter to
> strengthen my new core.  That's where Twitter (and Fred Thompson) have made
> it clear they want us to go.  Finally, some clarity.  I'm appreciative of
> it, regardless of how frustrating it can be.  Time for all of us to take
> this constructively and adapt.
> Just my $.02 FWIW...
> Jesse
>
> On Mon, Apr 12, 2010 at 9:54 AM, Isaiah Carew  wrote:
>>
>> Crystal clear.
>> 1.  You're decimating the client market on every platform but Windows.
>> 2.  You're killing any potential for innovation or investment.
>> 3.  You have no clear (public) plan for any innovation yourself.
>> What marketing genius...
>> Oh never mind.  It's not worth the breath.
>> Good luck with that.
>> Anyone want a chirp ticket?
>> isaiah
>> http://twitter.com/isaiah
>> On Apr 12, 2010, at 7:40 AM, Ryan Sarver wrote:
>>
>> One more from me. People have been asking for specific details around
>> Tweetie for Mac and I wanted to make sure we clearly message our plans
>> as we know it. To be clear, Tweetie for the iPhone and it's developer,
>> Loren Brichter, were the focus of our acquisition, but as part of the
>> deal we also got Tweetie for Mac.
>>
>> Loren had been hard at work on a new version of Tweetie for Mac that
>> he was going to release soon. Our plan is to still release the new
>> version and it will continue to be called Tweetie (not renamed to
>> Twitter). We will also discontinue the paid version.
>>
>> Hope that's clear. Please let me know if you have any questions.
>>
>> Best, Ryan
>>
>
>


-- 
To unsubscribe, reply using "remove me" as the subject.


Re: [twitter-dev] Open Sourcing Tweetie for Mac and iPhone

2010-04-10 Thread Andrew Badera
Has Twitter opensourced any previous acquisition? Why would they change now?

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Sat, Apr 10, 2010 at 9:29 AM, Lakshman Prasad  wrote:
> Facebook acquired Friendfeed and open sourced it.
> Google acquired Etherpad and open sourced it.
> I'm wondering, if, on the same lines, twitter will open source Tweetie for
> Mac, and iPhone and the impending Tweetie for iPad.


-- 
To unsubscribe, reply using "remove me" as the subject.


Re: [twitter-dev] Storing information from the API

2010-04-09 Thread Andrew Badera
Have you read the EULA(s) ?

In legal matters it's usually best to do your own footwork on the fine
print first and foremost, rather than trusting a list of Internet
strangers.

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Thu, Apr 8, 2010 at 8:56 PM, P L  wrote:
> Hi,
>  I'm trying to a pull in a user's profile picture and use it as their
> profile picture on my site. Am I allowed to store the URL in my
> database (until the user deletes the account/removes the image)? Or
> are there terms in the Twitter API which suggests that I'm not allowed
> to store information obtained from the API?
> Thanks
>


-- 
To unsubscribe, reply using "remove me" as the subject.


Re: [twitter-dev] Re: What Exactly is a "Developer Advocate?" (was Re: Opt-in beta of "Popular Tweets" for the Search API now available)

2010-04-06 Thread Andrew Badera
On Tue, Apr 6, 2010 at 7:51 PM, Dewald Pretorius  wrote:
> Unfortunately I'm not familiar with Andrew's full employment history
> and business background. But, I've been in the IT industry since 1980,
> and I've been at Vice President level of a large IT consulting
> company. Hence, with some things there is a slight possibility that I
> may know a little about what I'm talking.

Freelancing/consulting since 1996, mix of consulting and fulltime
since 1998, including time at IBM, Xerox, Gannett, Xerox again, and
other less-familiar names ranging from raw startups to SMB to midsize
corps, generally in dev/engineering/lead roles. More recently, CTO of
two startups, one somewhat backburnered this past year with the
economy, one rather new, (months old) still stealth but crazy active
and approaching public beta.

More relevant perhaps, recently took on the role of Senior Client
Services Engineer for Apprenda Inc., a recently-funded (NEA) upstate
NY startup, and makers of SaaSGrid. Also responsible for engineering
three or four actively consumed, fairly mature APIs (with admittedly
relatively small userbases) over the past few years.

I've been on both sides of the API fence, provider and consumer. I've
seen great evangelism and great advocacy. I've also seen piss poor
planning resulting in piss poor results.

--ab


-- 
To unsubscribe, reply using "remove me" as the subject.


Re: [twitter-dev] Re: What Exactly is a "Developer Advocate?" (was Re: Opt-in beta of "Popular Tweets" for the Search API now available)

2010-04-06 Thread Andrew Badera
Taylor,

Your job title very much does matter. Any respectable public/"open"
API publisher needs to be concerned with the needs, wants and feelings
of their developer community. If you are part of Twitter's effort to
address this concern, then you need to be doing certain things. If you
are not, then you probably should not be labelled as doing these
things in order not to produce misleading expectations among
aforementioned developer community.

>From the sounds of things, you're somewhere between evangelist and
client services, but nowhere close to being in the ballpark of
developer advocate. I'm not saying you're not doing a good job, I'm
just saying you're not doing THAT job.

Unfortunately this just contributes to the idea that Twitter doesn't
care about the people who enabled its success, that it's grown too
big, too fast, to remember the little people, that it's all about the
big money and not at all about the community. I'm sure that's driven
in large part by Evil Investors, but somewhere at Twitter, someone
needs to take a stand and strike a balance. Apparently that's not you.

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Tue, Apr 6, 2010 at 7:07 PM, Taylor Singletary
 wrote:
> Hey everyone,
> My job title doesn't matter much. I do what I can and what needs to be done,
> whether that's being a contributing programmer on upcoming platform
> features, thoroughly testing an API before launch, analyzing implementations
> for spec compliance, communicating to and with the developer community,
> working closely with partners, writing documentation, or otherwise. My focus
> is on making the developer experience a positive one regardless of what
> bucket you fit into (hobbyist, corporate contributor, research scientist, or
> entrepreneur, or another lovely bucket). I might do that through building
> internal tools that make it more efficient and scalable for us to support
> you, I might do that by helping people out here who have questions, and I
> certainly might do that by channeling feedback generated in this particular
> segment of the developer community back to internal teams.
> When answering questions or engaging in discussions on this forum, I try to
> answer specific questions that are representative of the whole. I might not
> answer your specific question, but it's likely I'll answer a similar
> question with a response that would also apply to your own. Sometimes I will
> be intentionally obtuse. Often I will be overly verbose. If I don't perceive
> that I have something meaningful or valuable to add to a conversation or
> argument, I won't likely respond.
> We're listening. You're always a factor in the decision making process.
> Sometimes the community can help change a decision mid-flight (like us
> deciding to find another way to keep public_timeline alive, despite our
> desire to deprecate). There will be other times that we'll make a decision
> that's not in alignment with the perceived popular opinion. All of these
> things are true. I'll do my best to be transparent on our thought process
> when it's appropriate to do so; there are times when we won't make our
> intentions perfectly clear.
> The Twitter API will change. You & I will change with it. This is abstract.
> This is concrete. This is not a surprise. This is not a pipe.
> I'm still learning.
> Taylor Singletary
> Developer Advocate, Twitter
> http://twitter.com/episod
>
>
> On Tue, Apr 6, 2010 at 12:40 PM, M. Edward (Ed) Borasky 
> wrote:
>>
>> On 04/06/2010 09:31 AM, Raffi Krikorian wrote:
>> > all in all - i hope a lot of you are coming to chirp, as i would
>> > absolutely
>> > happy to have this conversation in person over some beers :P
>>
>> Black coffee for me, decaf if we're doing this at the "hack session /
>> unconference" ;-)
>>
>>
>>
>> --
>> M. Edward (Ed) Borasky
>> borasky-research.net/m-edward-ed-borasky
>>
>> "A mathematician is a device for turning coffee into theorems." ~ Paul
>> Erdős
>
>


-- 
To unsubscribe, reply using "remove me" as the subject.


Re: [twitter-dev] Twitter4J 2.1.1 is out! - with Geo Methods support, improved Android compatibility and more..

2010-04-01 Thread Andrew Badera
Any chance your release announcements could be kept to the twitter4j list?
This is a general purpose list, not a java list, not a twitter4j list, and
your info is a bit noisy to the majority of us to whom it is 100%
irrelevant.

Thanks in advance!
∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera


On Thu, Apr 1, 2010 at 1:03 PM, Yusuke Yamamoto  wrote:

> Hi all,
>
> I'm glad to announce that Twitter4J version 2.1.1 is available for
> download.
> http://twitter4j.org/en/index.html#download
>
> It is also available at the Maven central repository.
> http://repo1.maven.org/maven2/org/twitter4j/twitter4j-core/2.1.1/
> Please refer the Support API matrix the supported methods.
> http://twitter4j.org/en/api-support.html
>
> For Twtter4J specific issues, please use the Twitter4J mailing list.
> http://twitter4j.org/en/index.html#mailingList
>
> Compatibility notice:
> Twitter4J 2.1.x is slightly incompatible with 2.0.x or prior versions.
> Please refer the migration guide before you get started.
> http://twitter4j.org/en/versions.html#migration20x-21x
>
> Release Notes - Twitter4J - Version 2.1.1Bug
>
>- [TFJ-221 ] - changing
>the filter statement causes TwitterException
>- [TFJ-296 ] -
>TwitterException: -1 on Android platform
>- [TFJ-305 ] - retry
>interval seconds is unnecessarily multiplied by 1000
>- [TFJ-308 ] -
>UserList.isPublic() always returns false
>- [TFJ-310 ] -
>TwitterStream methods are declared to throw TwitterException unnecessarily
>- [TFJ-311 ] -
>TwitterStream methods are declared to throw TwitterException unnecessarily
>- [TFJ-321 ] - infinite
>loop in TwitterStream, results 100% cpu utilization
>
> Improvement
>
>- [TFJ-148 ] - ability to
>plugin logging frameworks : SLF4J / commons-logging / log4j
>- [TFJ-260 ] - follow
>recommended re-connection policy documented in the Streaming API
>documentation
>- [TFJ-271 ] - JAVA_HOME
>should not be hard-coded in setEnv.cmd
>- [TFJ-291 ] -
>TwitterException.getStatusCode() returns -1 when the account exceeds its
>rate limit
>- [TFJ-292 ] - clear
>javadoc warnings
>- [TFJ-294 ] -
>TwitterListener better to have references of TwitterMethod fields for ease
>of coding
>- [TFJ-295 ] -
>getOAuthAccessToken should throw IllegalStateException when no request 
> token
>is available.
>- [TFJ-297 ] - configure
>Twitter4J without specifying any system property
>- [TFJ-300 ] - Introduce
>User.getStatus() deprecate all other status related getters
>- [TFJ-301 ] -
>TwitterFactory should return strongly typed object for SpringFramwork
>friendliness
>- [TFJ-307 ] - add
>bin/oauthUpdate.sh/cmd
>- [TFJ-309 ] - move
>twitter4j.conf/http/logging/org.json to twitter4j.internal.*
>- [TFJ-318 ] -
>OAuthAuthorization.toString() / BasicAuthorization.toString() shouldn't
>include consumerSecret / password in the result
>- [TFJ-319 ] -
>twitter4j.internal.http.HttpResponse#asJSONObject calls asString()
>unnecessarily
>- [TFJ-323 ] -
>getOAuthAccessToken should return a cached access token instead of throw an
>IllegalStateException in the case the instance is already OAuth'ed
>
> New Feature
>
>- [TFJ-204 ] - Support
>locale, max_id, since and until parameter for Search API
>- [TFJ-233 ] - support
>local trends methods
>- [TFJ-241 ] - async
>support of list methods
>- [TFJ-242 ] - async
>support of list subscribers methods
>- [TFJ-243 ] - async
>support of list members methods
>- [TFJ-302 

Re: [twitter-dev] Empty strings from twitter.com

2010-03-25 Thread Andrew Badera
As designed. Keep-alive. Discussion on same earlier aleady in past week.

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Thu, Mar 25, 2010 at 1:37 AM, TCI  wrote:
> Hello,
> Also sent a ticket on this, but posting because someone else might be
> seeing this.
> Since 2:52PDT I am receving empty string and HTTP return code 0 from
> my calls to twitter.com, authenticated or unathenticated, including
> test.xml.
> I confirmed that the same code does return valid content and a 200
> code when pointed to http://www.yahoo.com
>
> Anybody else seeing this?
> R
>
> To unsubscribe from this group, send email to 
> twitter-development-talk+unsubscribegooglegroups.com or reply to this email 
> with the words "REMOVE ME" as the subject.
>

To unsubscribe from this group, send email to 
twitter-development-talk+unsubscribegooglegroups.com or reply to this email 
with the words "REMOVE ME" as the subject.


Re: [twitter-dev] Re: RateLimit value look to be incorrect in 3G/Edge

2010-03-24 Thread Andrew Badera
Most GPRS/Edge/3G is proxied through a single IP at some point. It's
not as intrusive as it once was, but it was definitely very common 3-5
years ago, and nothing I've read or heard seems to indicate that has
changed.

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Wed, Mar 24, 2010 at 11:58 AM, Eric  wrote:
> Hi Raffi,
> Thank for your answer
> Thank to Josh Bleech too, who answered me by mail. (He think the same
> thing of you Raffi)
>
> I just test with the friends_timeline methode, and the RateLimit is
> correctly decremented !
> You are probably right, maybe my IP is shared with other users...
> I can force users to log-in but it's annoying...
>
> However, other Twitter clients like twitterific look to work
> wonderfull...
>
>
>
> On 24 mar, 16:16, Raffi Krikorian  wrote:
>> hi eric.
>>
>> are you authenticating to this call, or are these unauthenticated?  i'd be
>> curious to know if you're having this problem in an authenticated session as
>> that rate limit is tied to your user.  in an unauthenticated world, i wonder
>> whether its because your request is coming from some form of shared IP
>> address?
>>
>>
>>
>>
>>
>> On Wed, Mar 24, 2010 at 3:02 AM, Eric  wrote:
>> > I have made complementary tests on my iPhone with
>> >http://api.twitter.com/1/account/rate_limit_status.jsonand i get
>> > theses results :
>>
>> > {"reset_time_in_seconds":1269426542,"reset_time":"Wed Mar 24 10:29:02
>> > + 2010","remaining_hits":132,"hourly_limit":150}
>> > {"hourly_limit":150,"reset_time":"Wed Mar 24 10:37:50 +
>> > 2010","reset_time_in_seconds":1269427070,"remaining_hits":123}
>> > {"reset_time":"Wed Mar 24 10:16:27 + 2010","remaining_hits":
>> > 118,"hourly_limit":150,"reset_time_in_seconds":1269425787}
>> > {"remaining_hits":119,"reset_time":"Wed Mar 24 10:37:50 +
>> > 2010","hourly_limit":150,"reset_time_in_seconds":1269427070}
>> > {"reset_time":"Wed Mar 24 10:16:27 + 2010","remaining_hits":
>> > 115,"hourly_limit":150,"reset_time_in_seconds":1269425787}
>>
>> > Nobody have always seen this problem ?
>>
>> > To unsubscribe from this group, send email to twitter-development-talk+
>> > unsubscribegooglegroups.com or reply to this email with the words "REMOVE
>> > ME" as the subject.
>>
>> --
>> Raffi Krikorian
>> Twitter Platform Teamhttp://twitter.com/raffi
>
> To unsubscribe from this group, send email to 
> twitter-development-talk+unsubscribegooglegroups.com or reply to this email 
> with the words "REMOVE ME" as the subject.
>

To unsubscribe from this group, send email to 
twitter-development-talk+unsubscribegooglegroups.com or reply to this email 
with the words "REMOVE ME" as the subject.


Re: [twitter-dev] entirely indecent conduct from a user

2010-03-21 Thread Andrew Badera
*snickers* capone *chuckles* tax evasion

*reference to age*

awww geez, the overly-melodramatic one has cut me off at the sack. fo'
rizzies, yo!

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Sun, Mar 21, 2010 at 8:17 PM, Caliban Darklock  wrote:
> On Sun, Mar 21, 2010 at 5:01 PM, Andrew Badera  wrote:
>>
>> Assumptions are without historical evidence to constitute your guess.
>> Mine's not.
>
> Neither is mine. They got Al Capone on tax evasion, remember? Most
> people who are skating right up to the line are going over it
> somewhere else.
>
>> What more explaining does it need, other than a big fat
>> "I'm being an annoying 'Calibal Darklock' WoW kiddie" sticker on its
>> forehead?
>
> Oh noes! He's making fun of my name!
>
> What are you, twelve?
>
> To unsubscribe from this group, send email to 
> twitter-development-talk+unsubscribegooglegroups.com or reply to this email 
> with the words "REMOVE ME" as the subject.
>

To unsubscribe from this group, send email to 
twitter-development-talk+unsubscribegooglegroups.com or reply to this email 
with the words "REMOVE ME" as the subject.


Re: [twitter-dev] entirely indecent conduct from a user

2010-03-21 Thread Andrew Badera
Assumptions are without historical evidence to constitute your guess.
Mine's not. What more explaining does it need, other than a big fat
"I'm being an annoying 'Calibal Darklock' WoW kiddie" sticker on its
forehead?

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Sun, Mar 21, 2010 at 7:57 PM, Caliban Darklock  wrote:
> On Sun, Mar 21, 2010 at 4:47 PM, Andrew Badera  wrote:
>>
>> You know what they say about assuming, right?
>
> I'm not sure. Perhaps you can explain how it applies to this example:
>
> "They'll ban an account that's borderline 1st amendment without a
> second thought"
>
> To unsubscribe from this group, send email to 
> twitter-development-talk+unsubscribegooglegroups.com or reply to this email 
> with the words "REMOVE ME" as the subject.
>

To unsubscribe from this group, send email to 
twitter-development-talk+unsubscribegooglegroups.com or reply to this email 
with the words "REMOVE ME" as the subject.


Re: [twitter-dev] entirely indecent conduct from a user

2010-03-21 Thread Andrew Badera
On Sun, Mar 21, 2010 at 7:46 PM, Caliban Darklock  wrote:
> On Sun, Mar 21, 2010 at 4:36 PM, Andrew Badera  wrote:
>>
>> Chances are now that it's a visible issue, they'll block it.
>
> I'm betting if they do, it will be for an unrelated reason.
>
> See, people who say these things tend to be all KINDS of unsavoury. If
> I had access to this guy's PM logs and IP records, I'll bet I could
> find something he did wrong.
>
> And now that he's high profile, I'll bet someone else is looking at
> them as we speak.

You know what they say about assuming, right?

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera

To unsubscribe from this group, send email to 
twitter-development-talk+unsubscribegooglegroups.com or reply to this email 
with the words "REMOVE ME" as the subject.


Re: [twitter-dev] entirely indecent conduct from a user

2010-03-21 Thread Andrew Badera
I wouldn't jump on that and trumpet it quite so quickly. Chances are
now that it's a visible issue, they'll block it. Freedom of speech is
NOT twitter's first and foremost concern. They'll ban an account
that's borderline 1st amendment without a second thought, believe me.

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Sun, Mar 21, 2010 at 7:33 PM, Caliban Darklock  wrote:
> On Sun, Mar 21, 2010 at 4:07 PM, neal rauhauser  wrote:
>>
>>  What does it take to get this nitwit removed?
>
> Shockingly enough, to the best of my ability to discern, this person
> is not violating any of Twitter's rules or terms of service.
>
> I rather like that. Freedom of speech is a principle that means
> nothing whatsoever unless you apply it to nasty, indefensible
> statements like these. You can't make any excuses for this sort of
> speech - it's just plain horrid. So the only reason you would EVER let
> someone say these things is that you really, honestly, truly believe
> in freedom of speech.
>
> So three cheers for Twitter. Way to take a stand.
>
> To unsubscribe from this group, send email to 
> twitter-development-talk+unsubscribegooglegroups.com or reply to this email 
> with the words "REMOVE ME" as the subject.
>

To unsubscribe from this group, send email to 
twitter-development-talk+unsubscribegooglegroups.com or reply to this email 
with the words "REMOVE ME" as the subject.


Re: [twitter-dev] Best practice for personal alerts?

2010-03-21 Thread Andrew Badera
1) Look into whitelisting.
2) I don't know if this is a bug, or if it's on the roadmap for
getting fixed, but as of the other week, you were still able (unless
I'm crazy, I've been averaging <4 hours of sleep the past 6 weeks,
anything's possible) to send DMs to yourself, from yourself, via
approved OAuth apps. You could get user permission then use the user's
account to send their own account the notification DM.

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Sun, Mar 21, 2010 at 4:42 AM, MaartenB  wrote:
> Hi Guys,
>
> I'm looking for a best practice for sending personal alerts directly
> via twitter!
>
> I have an application where users can create a personal search profile
> (just like Google Alerts) and receive updates in their mailbox. A user
> will only receive one update a day (at max), but in most cases there
> will 1 or 2 updates a week.
>
> How can I add Twitter updates to this workflow?
>
> I thougth I could simply send a Update Message with an @reply from my
> company's twitter account. However I found out that a single twitter
> account can only send 1000 updates a day. When I do use Direct
> Messages I can only send 250 messages a day.
>
> The only workaround I see is to send the Updates to the user via the
> account of the user itself.
>
> "[username] @[username] Hi, [user] there is a update for your profile:
> [profilename]. Just check it out! http://bit.ly/";
>
> Do you have any comments on this, or maybe some tips to get my alerts
> on Twitter?
>
> Thanks!
>
> Ps, all alerts and updates are on request of the user. He has to
> validate his emailaccount (and in the future his twitter account) so
> there is no spam sending involved!
>
> To unsubscribe from this group, send email to 
> twitter-development-talk+unsubscribegooglegroups.com or reply to this email 
> with the words "REMOVE ME" as the subject.
>

To unsubscribe from this group, send email to 
twitter-development-talk+unsubscribegooglegroups.com or reply to this email 
with the words "REMOVE ME" as the subject.


Re: [twitter-dev] Way to use JSON offline?

2010-03-20 Thread Andrew Badera
Read up on the concept of "mocking."

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Sat, Mar 20, 2010 at 1:20 PM, Cassidy  wrote:
> Anyone know a way to just use a local JSON file, taken from a twitter
> API call, to test an app with in PHP? Right now I'm testing with
> actual calls to the API, but I don't want to have to keep tracking how
> many calls I've made within the hour.
>
> Thanks!
>
> To unsubscribe from this group, send email to 
> twitter-development-talk+unsubscribegooglegroups.com or reply to this email 
> with the words "REMOVE ME" as the subject.
>

To unsubscribe from this group, send email to 
twitter-development-talk+unsubscribegooglegroups.com or reply to this email 
with the words "REMOVE ME" as the subject.


Re: [twitter-dev] Chrome plugin to shut down unwanted Twitter popups?

2010-03-19 Thread Andrew Badera
The problem is clientside script. The answer with a Chrome plugin
would be clientside script. Catch-22?

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Fri, Mar 19, 2010 at 2:12 PM, neal rauhauser  wrote:
>
>   Someone suggested that a Chrome plugin to shut down this profile popup
> stuff was possible - has anyone actually done such a thing? It is
> desperately needed - Twitter is all but unusable for those of us on Atom
> based machines with all of this undesired popping & lag.
>
>
>
> --
> mailto:n...@layer3arts.com //
> GoogleTalk: nrauhau...@gmail.com
> GV: 202-642-1717
>
> To unsubscribe from this group, send email to
> twitter-development-talk+unsubscribegooglegroups.com or reply to this email
> with the words "REMOVE ME" as the subject.
>

To unsubscribe from this group, send email to 
twitter-development-talk+unsubscribegooglegroups.com or reply to this email 
with the words "REMOVE ME" as the subject.


Re: [twitter-dev] massive #fail - auto profile popups

2010-03-19 Thread Andrew Badera
On Fri, Mar 19, 2010 at 2:26 AM, neal rauhauser  wrote:
>
>   The automated profile popups are a profound source of #fail.  Anyone using
> an Atom based machine is basically twiddling their thumbs for 30% of the
> time they're trying to use the web interface.  Chrome users already had this
> feature with the bit.ly expander and it did much, much more.
>
>   There really needs to be a No Silly Automated Profile Popup [ ] check box
> available in account config. If this had been the Twitter interface when I
> started I'd have 5 followers, 10 tweets, and I'd have been idle for 600+
> days.

The popovers are very awkward. The popups that use a pointer are much
more usable in my opinion.

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera

To unsubscribe from this group, send email to 
twitter-development-talk+unsubscribegooglegroups.com or reply to this email 
with the words "REMOVE ME" as the subject.


Re: [twitter-dev] Re: Someone managed to get me to follow them w/o my intervention (@johnnymatosj)

2010-03-18 Thread Andrew Badera
Ask them? I mean, this IS Twitter, right?

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Thu, Mar 18, 2010 at 6:31 PM, jmathai  wrote:
>
>
> On Mar 18, 2:14 pm, TJ Luoma  wrote:
>> >http://search.twitter.com/search?q=johnnymatosj
>>
>> I used this:
>>
>> http://search.twitter.com/search?q=johnnymatosj+-from%3Ajohnnymatosj
>>
>> and saw two, including you.
>
> I'm seeing 3 or 4...not a huge total but just wondering if there's a
> security hole.  This guy has a lot of followers and isn't following a
> ton of people.  So he's either genuinely interesting or gaming the
> system.
>
>> My guess? He's someone you were following who changed their twittername.
>>
>> He joined back in September 2009. Anyone you've followed since then
>> who's gone "missing"?
>
> Possible.  I'm only following 13 people...don't remember who all.
> This is a personal account I use only via a desktop client.  Could be
> a switched username.  But I can't verify that.
>
> To unsubscribe from this group, send email to 
> twitter-development-talk+unsubscribegooglegroups.com or reply to this email 
> with the words "REMOVE ME" as the subject.
>

To unsubscribe from this group, send email to 
twitter-development-talk+unsubscribegooglegroups.com or reply to this email 
with the words "REMOVE ME" as the subject.


Re: [twitter-dev] Posting to Twitter using oAuth

2010-03-17 Thread Andrew Badera
Hours, huh?

http://apiwiki.twitter.com/OAuth-Examples

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Wed, Mar 17, 2010 at 8:31 AM, ministrymason
 wrote:
> Can anyone provide a example of connecting to twitter via oAuth and
> publishing a tweet. I have created a twitter ap. I have spent hours
> searching on the internet but i can only find PHP examples. My website
> is built using JSP and Javascript. Can anyone help?
>
> Thanks
>
> Chris
>


Re: [twitter-dev] Streaming API Basic Auth

2010-03-16 Thread Andrew Badera
Would JSONP be a fit for your situation?

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Mon, Mar 15, 2010 at 8:06 PM, Lawrence  wrote:
> Hi Everyone,
> I am developing a Twitter program,which needs to get access for the
> Twitter streaming API. I can use Http Clients (Apache Wink) to get
> data from streaming API with no problem.
>
> However, my application needs to use JavaScript to access the
> Streaming API and receive data. I got failure in the first step:
> trying to pass the basic auth... Instead, i always got the 401 reply
> from twitter streaming api (unauthorized)
>
> Here is some snippet from my code,
> function send(arg)
>            {
>               CreateXMLHttpRequest();
>               xmlhttp.onreadystatechange = callhandle;
>
> xmlhttp.open("GET",url);
>               xmlhttp.setRequestHeader("Authorization", "Basic
> bXXXyZWXTY4OTE4dHxxlc==");
>   // for my account security reason, i changed the string for my
> password and user name, but I am pretty sure the string in my original
> code is correct because I got it from the printing of my successful
> http clients example.
>               xmlhttp.send(arg);
>           }
>
> Is this because the cross-domain restriction? Is there any way which i
> can use JS to access the streaming API to obtain data?
>
> Cheers
> Lawrence
>


Re: [twitter-dev] virus help

2010-03-16 Thread Andrew Badera
Try:

http://securitytango.com/

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Tue, Mar 16, 2010 at 11:00 AM, jitterbug212  wrote:
> I got a virus when Jason Mraz's account got hacked (and I, ironically,
> took the IQ quiz) - it's the one that blocks spybot so I can't get rid
> of it.  Can anyone help?
>


Re: [twitter-dev] Streaming API JSON Decode Double Errors?

2010-03-13 Thread Andrew Badera
We can't answer your question for you since we have no idea what
you're receiving. What does the streaming response look like that your
consumer is tripping over? Capture it in association with log events.

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Sat, Mar 13, 2010 at 5:23 PM, briantroy  wrote:
> We are doing are last bit of testing before cutting over to the
> streaming API and we see occasional errors:
>
> PHP Warning:  [json] (json_encode_r) double INF does not conform to
> the JSON spec, encoded as 0. in /root/src/justsignal-twitter-stream/
> twitter-track-class.php on line 154
> PHP Warning:  [json] (json_encode_r) double -INF does not conform to
> the JSON spec, encoded as 0. in /root/src/justsignal-twitter-stream/
> twitter-track-class.php on line 154
>
>
> Seems pretty odd to me because we are decoding the JSON (to look for
> limit messages) and then just popping the JSON onto a queue. If we
> don't find an ID or a LIMIT we log the JSON - all of this happens
> before the JSON encode ever happens.
>
> We are getting 0 JSON logged (because it doesn't have an ID or LIMIT).
>
> Anyone else seen this?
>
> Thanks!
>
> Brian Roy
>


Re: [twitter-dev] Re: Refresh page via the API

2010-03-12 Thread Andrew Badera
iframe, or pop a new window ...

--ab



On Fri, Mar 12, 2010 at 8:02 PM, P L  wrote:
> If this was a web application, would there be another way of doing
> this? Or would the web application also have to host the page in an
> iFrame or something?
>
> On Mar 13, 12:45 am, Andrew Badera  wrote:
>> Host a webpage in your desktop app for those purposes.
>>
>> --ab
>>
>>
>>
>> On Fri, Mar 12, 2010 at 7:36 PM, P L  wrote:
>> > Hi,
>> > The desktop application I'm working on is used to customize your
>> > Twitter page. Therefore, any changes you make in the app can be seen
>> > in your Twitter page. However, at the moment, everytime the user makes
>> > a change, they have to open the browser and refresh. I thought it
>> > would be nicer to simply show the changes in real time without the
>> > updating.
>>
>> > On Mar 13, 12:17 am, Andrew Badera  wrote:
>> >> 1) No, don't think there is ...
>> >> 2) Why do you need to "refresh the page" in a forced fashion in a
>> >> desktop app? If you're running a web control with the page in it,
>> >> refresh it ... if you're talking about any/all instances of the
>> >> browser page ... well, why?
>>
>> >> ∞ Andy Badera
>> >> ∞ +1 518-641-1280 Google Voice
>> >> ∞ This email is: [ ] bloggable [x] ask first [ ] private
>> >> ∞ Google me:http://www.google.com/search?q=andrew%20badera
>>
>> >> On Fri, Mar 12, 2010 at 5:02 PM, P L  wrote:
>> >> > Hey all,
>> >> >  I'm using the Twitter API for a desktop application. Is there a way
>> >> > of sending a POST header (or something) that will automatically
>> >> > refresh the page after an action has been performed? For example, I
>> >> > can update the user's profile picture via my app, but the change can't
>> >> > be seen until I manually refresh the page. Is there a way, maybe with
>> >> > AJAX (?), to update the page automatically once the profile picture
>> >> > has been changed?
>>
>> >> > Thanks for any help
>>
>> >> > P Louw
>


Re: [twitter-dev] Re: Refresh page via the API

2010-03-12 Thread Andrew Badera
Host a webpage in your desktop app for those purposes.

--ab



On Fri, Mar 12, 2010 at 7:36 PM, P L  wrote:
> Hi,
> The desktop application I'm working on is used to customize your
> Twitter page. Therefore, any changes you make in the app can be seen
> in your Twitter page. However, at the moment, everytime the user makes
> a change, they have to open the browser and refresh. I thought it
> would be nicer to simply show the changes in real time without the
> updating.
>
> On Mar 13, 12:17 am, Andrew Badera  wrote:
>> 1) No, don't think there is ...
>> 2) Why do you need to "refresh the page" in a forced fashion in a
>> desktop app? If you're running a web control with the page in it,
>> refresh it ... if you're talking about any/all instances of the
>> browser page ... well, why?
>>
>> ∞ Andy Badera
>> ∞ +1 518-641-1280 Google Voice
>> ∞ This email is: [ ] bloggable [x] ask first [ ] private
>> ∞ Google me:http://www.google.com/search?q=andrew%20badera
>>
>>
>>
>> On Fri, Mar 12, 2010 at 5:02 PM, P L  wrote:
>> > Hey all,
>> >  I'm using the Twitter API for a desktop application. Is there a way
>> > of sending a POST header (or something) that will automatically
>> > refresh the page after an action has been performed? For example, I
>> > can update the user's profile picture via my app, but the change can't
>> > be seen until I manually refresh the page. Is there a way, maybe with
>> > AJAX (?), to update the page automatically once the profile picture
>> > has been changed?
>>
>> > Thanks for any help
>>
>> > P Louw
>


Re: [twitter-dev] Refresh page via the API

2010-03-12 Thread Andrew Badera
1) No, don't think there is ...
2) Why do you need to "refresh the page" in a forced fashion in a
desktop app? If you're running a web control with the page in it,
refresh it ... if you're talking about any/all instances of the
browser page ... well, why?

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Fri, Mar 12, 2010 at 5:02 PM, P L  wrote:
> Hey all,
>  I'm using the Twitter API for a desktop application. Is there a way
> of sending a POST header (or something) that will automatically
> refresh the page after an action has been performed? For example, I
> can update the user's profile picture via my app, but the change can't
> be seen until I manually refresh the page. Is there a way, maybe with
> AJAX (?), to update the page automatically once the profile picture
> has been changed?
>
> Thanks for any help
>
> P Louw
>


Re: [twitter-dev] Re: Sending geo-tagged tweets is broken? 502 Bad Gateway Error ...

2010-03-12 Thread Andrew Badera
Note some users also appear to have to clear cookies and sign back in,
in addition to unchecking the location option.

--ab



On Fri, Mar 12, 2010 at 6:56 AM, Andrew Badera  wrote:
> This is also preventing posting from web UI if user has location
> option checked in settings.
>
> ∞ Andy Badera
> ∞ +1 518-641-1280 Google Voice
> ∞ This email is: [ ] bloggable [x] ask first [ ] private
> ∞ Google me: http://www.google.com/search?q=andrew%20badera
>
>
>
> On Fri, Mar 12, 2010 at 6:49 AM, Thomas Woolway  wrote:
>> Yes, we're (TweetDeck) having the same issues, and it looks like Tweetie is
>> as well - looks like something may have broken last night when rolling out
>> the new geo features?
>> Tom
>>
>> On Fri, Mar 12, 2010 at 10:20 AM, Rich  wrote:
>>>
>>> I'm seeing this too, whenever I send a lat or long parameter I get a
>>> 502 error and can't post any geo location tweets
>>>
>>> On Mar 12, 8:59 am, janole  wrote:
>>> > Hi,
>>> >
>>> > I cannot send geotagged tweets via Gravity anymore. I'm always getting
>>> > an HTTP 502 Bad Gateway error.
>>> >
>>> > Without attaching the lat/long vars, it's working.
>>> >
>>> > Strangely, I cannot send updates via the website either (twitter.com).
>>> >
>>> > @janole
>>> >
>>> > --
>>> > Jan Ole Suhr / Gravity S60 Twitter Client
>>> > o...@mobileways.de
>>
>>
>


Re: [twitter-dev] Re: Sending geo-tagged tweets is broken? 502 Bad Gateway Error ...

2010-03-12 Thread Andrew Badera
This is also preventing posting from web UI if user has location
option checked in settings.

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Fri, Mar 12, 2010 at 6:49 AM, Thomas Woolway  wrote:
> Yes, we're (TweetDeck) having the same issues, and it looks like Tweetie is
> as well - looks like something may have broken last night when rolling out
> the new geo features?
> Tom
>
> On Fri, Mar 12, 2010 at 10:20 AM, Rich  wrote:
>>
>> I'm seeing this too, whenever I send a lat or long parameter I get a
>> 502 error and can't post any geo location tweets
>>
>> On Mar 12, 8:59 am, janole  wrote:
>> > Hi,
>> >
>> > I cannot send geotagged tweets via Gravity anymore. I'm always getting
>> > an HTTP 502 Bad Gateway error.
>> >
>> > Without attaching the lat/long vars, it's working.
>> >
>> > Strangely, I cannot send updates via the website either (twitter.com).
>> >
>> > @janole
>> >
>> > --
>> > Jan Ole Suhr / Gravity S60 Twitter Client
>> > o...@mobileways.de
>
>


Re: [twitter-dev] Sign Out no longer works

2010-03-11 Thread Andrew Badera
Any chance this is related to the URL switch and cookies leftover from
the old URL? We've seen similar before ...

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Thu, Mar 11, 2010 at 8:56 PM, Michael Steuer  wrote:
> Hi Twitter folks,
>
> It seems the “Sign Out” link on Twitter.com, as well as the one on the Oauth
> sign in page no longer works... It seems to just be reloading the page or
> something... I’ve reproduced this on Firefox for Mac and Firefox for
> Window..
>
> Just wanted to let you know, not sure if it was a known issue yet... (right
> now Oauth users (or Twitter.com users) cannot switch accounts it seems)
>
> Michael.


Re: [twitter-dev] Twitter API Request to Get the List of Friends Who have not followed you back

2010-03-11 Thread Andrew Badera
Which is why you'll notice a lot of asynchronous account
parsing/polling behavior in many apps.

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Wed, Mar 10, 2010 at 11:43 PM, Mr. Khan  wrote:
> I did it, But here is a question about performance, if we have 100k
> followers and suppose 90 k following then we have to loop through them and
> then unfollow.
> Regards:
> Durrab Khan
>
> On Thu, Mar 11, 2010 at 1:48 AM, Alam Sher  wrote:
>>
>> I think its the simplest of features to implement using existing Twitter
>> API as Scott suggest.
>>
>> Just write a method in your service to fetch friends ids and followers ids
>> and then compare these ids to separate the list of followers ids who are not
>> friends. Then provide links to unfollow these ids on interface. Is that
>> difficult? Not at all. Some client side programming is needed only.
>>
>> Cheers,
>> Alam Sher
>>
>> On Tue, Mar 9, 2010 at 8:46 PM, Dean Collins  wrote:
>>>
>>> www.mypostbutler.com does that, basically in the unfollow feature it
>>> separates out who follows you back or not you can then see who has no
>>> return love for you :(
>>>
>>>
>>>
>>> Cheers,
>>>
>>> Dean
>>>
>>>
>>>
>>>
>>> -Original Message-
>>> From: twitter-development-talk@googlegroups.com
>>> [mailto:twitter-development-t...@googlegroups.com] On Behalf Of Scott
>>> Wilcox
>>> Sent: Tuesday, March 09, 2010 9:58 AM
>>> To: twitter-development-talk@googlegroups.com
>>> Subject: Re: [twitter-dev] Twitter API Request to Get the List of
>>> Friends Who have not followed you back
>>>
>>> There is no API endpoint for this. You will need to build it clientside
>>> yourself. Get your list of followers and friends and then compare.
>>>
>>> Scott.
>>>
>>> On 9 Mar 2010, at 10:51, Durrab wrote:
>>>
>>> > Hello,
>>> >            My name is Durrab and I want Twitter to Provide one more
>>> > API Request as those Friends who have not followed your.
>>> >
>>> > For Example:
>>> >
>>> > http://api.twitter.com/1/friends/notfollowed/ids.format
>>> >
>>> > Thanks & Regards:
>>> >
>>> > Durrab
>>>
>>
>>
>>
>> --
>> ___
>> Alam Sher Khan
>> +92 331 505 5549
>
>
>
> --
> Kind Regards
>
> Durrab Jami Khan
>
> Senior Software Engineer & CEO
> Dura Interactive:
> www.durainteractive.com
>
> Team Lead: Java, J2EE, Adobe Flex
>
> 
>
> Mob
> +92.333.4715789
>
> Land Lines
>
> +92 42 6621556
> +92 42 7001543
>
>
>
>


Re: [twitter-dev] Re: Application based on Search API

2010-03-10 Thread Andrew Badera
So you want to use the Streaming API, primarily, for anything
realtime. Maybe the Search API in a supplementary fashion ... is there
whitelisting for the Search API specifically?

--ab



On Wed, Mar 10, 2010 at 5:21 AM, Diz  wrote:
> Okie, closing the Pandora's box! I never specified that my app will
> generate an API! I also didn't specify anything about resyndicating
> content.
> I just want to offer real-time activity on a web interface, and beside
> that analyze cached tweets to generate statistics.
>
> Anyone, following me?!
>
>
>
> On Mar 10, 12:33 am, Will Fleming  wrote:
>> Are the "various terms and agreements" that currently disallow this
>> published anywhere?
>>
>> After a brief look (perhaps I missed it) 
>> at:http://twitter.com/apiruleshttp://twitter.com/toshttp://help.twitter.com/forums/26257/entries/18311
>>
>> As far as I can tell there isn't anything that explicitly disallows
>> resyndicating
>> or making "Twitter data available via an API".
>>
>> The TOS also states:
>> "Tip: This license is you authorizing us to make your Tweets available to
>> the rest of the world and to let others do the same."
>> "Tip: We encourage and permit broad re-use of Content. The Twitter API
>> exists to enable this."
>>
>> thanks
>>
>> On Mon, Mar 8, 2010 at 10:06 PM, John Kalucki  wrote:
>> > Not at the moment, as we expect that the number of services that this will
>> > apply to is small. We'll be clarifying data access and licensing over the
>> > next few months.
>>
>> > -John Kalucki
>> >http://twitter.com/jkalucki
>> > Infrastructure, Twitter Inc.
>>
>> > On Mon, Mar 8, 2010 at 9:57 PM, Abraham Williams <4bra...@gmail.com>wrote:
>>
>> >> Is the specific set of requirements published anywhere?
>>
>> >> Abraham
>>
>> >> On Mon, Mar 8, 2010 at 06:50, John Kalucki  wrote:
>>
>> >>> Your application description sounds like resyndication, which is not
>> >>> allowed under various terms and agreements. You cannot make Twitter data
>> >>> available via an API unless a very specific set of requirements are 
>> >>> adhered
>> >>> to. Contact a...@twitter.com to start this process.
>>
>> >>> -John Kalucki
>> >>>http://twitter.com/jkalucki
>> >>> Infrastructure, Twitter Inc.
>>
>> >>> On Mon, Mar 8, 2010 at 3:37 AM, Diz  wrote:
>>
>>  For the last 3 months I am experimenting the Search API. I'm focusing
>>  on the geo-location searching capabilities.
>>
>>  For the beginning I started with my own city, but my intents are to
>>  extend to the major cities of my country: that will be at most ten. My
>>  idea of application is to offer real-time activity on each major city,
>>  through a proxy that caches all tweets and then serves them further to
>>  clients, filtered or non-filtered. Frequency of requests should be
>>  between 5 to 10 seconds, and that means I should do between 400 to 800
>>  requests per hour just for one city, and probably between 4000 to 8000
>>  requests for the whole application.
>>
>>  My questions are:
>>  1). Should I use Search API, or should I move to the Streaming API?!
>>  2). To whom I should request whitelisting: the usual Search API or the
>>  Streaming API?!
>>
>>  Thanks!
>>
>> >> --
>> >> Abraham Williams | Community Advocate |http://abrah.am
>> >> TwitterOAuth |http://github.com/abraham/twitteroauth
>> >> This email is: [ ] shareable [x] ask first [ ] private.
>


Re: [twitter-dev] Application based on Search API

2010-03-10 Thread Andrew Badera
Not sure about the REST/Search API, but on the Streaming side:

http://twitter.com/pdfs/streaming_api_eula.pdf

... see Restrictions ...

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Tue, Mar 9, 2010 at 5:33 PM, Will Fleming  wrote:
> Are the "various terms and agreements" that currently disallow this
> published anywhere?
> After a brief look (perhaps I missed it) at:
> http://twitter.com/apirules
> http://twitter.com/tos
> http://help.twitter.com/forums/26257/entries/18311
>
> As far as I can tell there isn't anything that explicitly
> disallows resyndicating or making "Twitter data available via an API".
> The TOS also states:
> "Tip: This license is you authorizing us to make your Tweets available to
> the rest of the world and to let others do the same."
> "Tip: We encourage and permit broad re-use of Content. The Twitter API
> exists to enable this."
>
> thanks
>
> On Mon, Mar 8, 2010 at 10:06 PM, John Kalucki  wrote:
>>
>> Not at the moment, as we expect that the number of services that this will
>> apply to is small. We'll be clarifying data access and licensing over the
>> next few months.
>>
>> -John Kalucki
>> http://twitter.com/jkalucki
>> Infrastructure, Twitter Inc.
>>
>>
>> On Mon, Mar 8, 2010 at 9:57 PM, Abraham Williams <4bra...@gmail.com>
>> wrote:
>>>
>>> Is the specific set of requirements published anywhere?
>>> Abraham
>>>
>>> On Mon, Mar 8, 2010 at 06:50, John Kalucki  wrote:

 Your application description sounds like resyndication, which is not
 allowed under various terms and agreements. You cannot make Twitter data
 available via an API unless a very specific set of requirements are adhered
 to. Contact a...@twitter.com to start this process.

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


 On Mon, Mar 8, 2010 at 3:37 AM, Diz  wrote:
>
> For the last 3 months I am experimenting the Search API. I'm focusing
> on the geo-location searching capabilities.
>
> For the beginning I started with my own city, but my intents are to
> extend to the major cities of my country: that will be at most ten. My
> idea of application is to offer real-time activity on each major city,
> through a proxy that caches all tweets and then serves them further to
> clients, filtered or non-filtered. Frequency of requests should be
> between 5 to 10 seconds, and that means I should do between 400 to 800
> requests per hour just for one city, and probably between 4000 to 8000
> requests for the whole application.
>
> My questions are:
> 1). Should I use Search API, or should I move to the Streaming API?!
> 2). To whom I should request whitelisting: the usual Search API or the
> Streaming API?!
>
>
> Thanks!

>>>
>>>
>>>
>>> --
>>> Abraham Williams | Community Advocate | http://abrah.am
>>> TwitterOAuth | http://github.com/abraham/twitteroauth
>>> This email is: [ ] shareable [x] ask first [ ] private.
>>
>
>


Re: [twitter-dev] Re: Tracking number of users for an OAuth app

2010-03-10 Thread Andrew Badera
Didn't previous conversations on similar topics leads to the concept
that every client needs its own key? And if so, how do you aggregate
stats on that?

If you give out a client with a single key, and you give away that
key, who is then responsible for the behavior of the application? Who
does Twitter contact when some douchenozzle starts sending spam or
injects a worm using your key? And how do you, the developer of the
app, then fix those problems, if everyone has your key, without
re-issuing a new key and invalidating all previous installs?

You should proxy your OAuth requests through a web app. Problems solved.

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Wed, Mar 10, 2010 at 12:53 AM, SM  wrote:
> It's a desktop app, not a web app. Is there an easy way to do this for
> desktop apps? I would think Twitter could provide usage stats for
> OAuth apps.
>
> On Mar 9, 5:24 pm, Michael Steuer  wrote:
>> Wouldn't you yourself know best how to calculate how many people are
>> actively using your app?
>>
>> On 3/9/10 5:14 PM, "SM"  wrote:
>>
>>
>>
>> > On the application detail page there is a stat that shows how many
>> > users your app has.
>>
>> > How is this stat calculated? Is it the number of authorized tokens or
>> > does it reflect some rolling count of accesses using an authorized
>> > token? Or some other calculation?
>>
>> > If someone uses my app once and then forgets about it, will that
>> > person continue to be counted as a user since tokens never expire?
>>
>> > I'm hoping it is a stat that actually tracks how many people are
>> > actively using your app.
>>
>> > Thanks.
>


Re: [twitter-dev] icons

2010-03-09 Thread Andrew Badera
Have you checked out: http://twitter.com/goodies/buttons

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Tue, Mar 9, 2010 at 2:26 PM, Troy  wrote:
> Hi, I'm developing a twitter specific (no facebook, etc) site using
> the api and wanted to know if it is ok to copy twitters icon sprite to
> our site and use the same icons that twitter.com does for replies,
> retweets etc.  For clarification, we are not using the twitter logo,
> but want to give users a familiar experience when tweeting from our
> site.
>
> Thanks,
>
> Troy
>
>


Re: [twitter-dev] Re: Need help with the streaming API syntax....specifically how to point to the track text file without using curl

2010-03-05 Thread Andrew Badera
You need a client returning incremental HTTP responses. I don't think
WebResponse does that. TcpClient definitely does, that's what I'm
using in C#.

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Fri, Mar 5, 2010 at 4:38 PM, Mark McBride  wrote:
> I think this is slightly backwards.  You want to use the GET method, but set
> up the URI you have (with the track=Microsoft parameter).  You will also
> need to authenticate.
> Note that this is a streaming API.  I don't know VB all that well, but
> there's a reasonable chance that this call only returns data when the HTTP
> call has finished.  The streaming API will *never* finish, so you'll need to
> parse data as it's available.  Without looking at VB doc I have no idea how
> you would set that up.
>
>   ---Mark
>
> http://twitter.com/mccv
>
>
> On Fri, Mar 5, 2010 at 9:54 AM, Mad Euchre  wrote:
>>
>> Thanks.
>>
>> Now I'm using the post method.
>>
>> How should I use the track parameter? Something like this?
>>
>>  address = New Uri("http://stream.twitter.com/1/statuses/filter.json?
>> track=Microsoft")
>>
>> I'm getting connected but no data  that matches Microsoft is streaming
>> over.No data for that matter.
>>
>> I'm passing my name and pw in the request.credentials method. The
>> server returned a 200 OK when I added the credentials but not when it
>> was in the URL alone.
>>
>> ie; address = New Uri("http://stream.twitter.com/1/statuses/
>> filter.json?track=Microsoft - name:pw"
>>
>> Thanks,
>>
>> Peter
>>
>>
>>
>>
>>
>>
>>
>>
>> On Mar 2, 5:19 pm, John Kalucki  wrote:
>> > The text file approach only applies to POST parameters set from the curl
>> > command, and in no other case.
>> >
>> > When creating an HTTP client from within a program, you should be able
>> > to
>> > configure the POST parameters via method calls. If you can't, it's a
>> > pretty
>> > worthless HTTP library. Each client library is different, check your
>> > docs.
>> >
>> > -John Kaluckihttp://twitter.com/jkalucki
>> > Infrastructure, Twitter Inc.
>> >
>> >
>> >
>> > On Tue, Mar 2, 2010 at 12:42 PM, Mad Euchre 
>> > wrote:
>> > > This is the VB code I would use to start any http stream
>> >
>> > >            request = DirectCast(WebRequest.Create("http://
>> > > stream.twitter.com/1/statuses/filter.json - name:pw"), HttpWebRequest)
>> > >            request.Credentials = New NetworkCredential("name", "pw")
>> > >            ' Get response
>> > >            response = DirectCast(request.GetResponse(),
>> > > HttpWebResponse)
>> >
>> > >            ' Get the response stream into a reader
>> > >            reader = New StreamReader(response.GetResponseStream())
>> >
>> > > The streaming api documentation says to create a file called track.txt
>> > > and add text similar to this without the quotes.   "track=peter, paul,
>> > > mary"
>> >
>> > > Then use curl
>> > > @track.txthttp://stream.twitter.com/1/statuses/filter.json
>> > > - name:pw
>> >
>> > > I can't believe I have to shell out to DOS and run the curl command
>> > > line.
>> >
>> > > My direct question is how do others incorportate the @track.txt in the
>> > > VB.Net web request?
>> >
>> > > Maybe something like this?
>> >
>> > >http://stream.twitter.com/1/statuses/filter.json- name:pw?
>> > > track.txt
>> >
>> > > Thanks- Hide quoted text -
>> >
>> > - Show quoted text -
>
>


Re: [twitter-dev] Re: A PubSubHubbub hub for Twitter

2010-03-01 Thread Andrew Badera
But how much simpler does it need to be? The streaming API is dead
simple. I implemented what seems to be a full client with delete,
limit and backoff in parts of two working days. Honestly I think it
took me longer to write a working PubSubHubbub subscriber client than
it did a Twitter Streaming API client.

It would be nice if the world was full of free data and universal
standards, but if it ain't broke, and it's already invested in, why
fix it?

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Mon, Mar 1, 2010 at 8:44 PM, Julien  wrote:
> Ed,
>
> On Mar 1, 5:23 pm, "M. Edward (Ed) Borasky"  wrote:
>> In light of today's announcement, I'm not sure what the benefits of a
>> "middleman" would be.
>>
>> http://blog.twitter.com/2010/03/enabling-rush-of-innovation.html
>>
>> Can you clarify
>>
>> a. How much it would cost me to get Twitter data from you via
>> PubSubHubbub vs. getting the feeds directly from Twitter?
> Free, obviously... as with the use of any hub we host!
>
>> b. What benefits there are to acquiring Twitter data via PubSubHubbub
>> over direct access?
> Much simpler to deal with than a specific streaming Twitter API,
> specifically if your app has already implemented the protocol for
> Identica, Buzz, Tumblr, sixapart, posterous, google reader... it's all
> about "standards".
>
>
>
>
>>
>> On Mar 1, 3:08 pm, Julien  wrote:
>>
>>
>>
>> > Ola!
>>
>> > I know this s some kind of recurring topic for this mailing list. I
>> > know all the heat around it, but I think that Twitter's new strategy
>> > concerning their firehose is a good occasion to push them to implement
>> > the PubSubHubbub protocol.
>>
>> > Superfeedr makes RSS feeds realtime. We host hubs for several big
>> > publishers, including Tumblr, Posterous, HuffingtonPost, Gawker and
>> > several others.
>>
>> > We want to make one for Twitter. Help us assessing the need and
>> > convince Twitter they need one (hosted by us or even them, if they'd
>> > rather go down that route) :
>>
>> >http://bit.ly/hub4twitter
>>
>> > Any comment/suggestion is more than welcome.
>


Re: [twitter-dev] Apache HTTP Server Stopped Working

2010-02-22 Thread Andrew Badera
Is Windows Firewall running? Try both explicit exceptions as well as
turning it entirely off. Also, what's your callback actually look
like? Are you localhost'g it or otherwise?

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Mon, Feb 22, 2010 at 3:48 PM, Diego Alvarado  wrote:
> Hello!
> I am dealing with an issue with the twitter OAuth PHP example by
> Abraham Williams. Once a allow acces to my twitter account, the
> browser can't redirect me to the callback URL. Firefox shows the
> "conexion was reset" error and windows (Vista Home Basic) shows me an
> error: "Apache HTTP Server stopped working".
>
> Is there anyone having this problem too?
>
> I am trying to make this work using a local server (appserv 2.6.0). I
> tried this using wamp server on a windows XP desktop and had the same
> result.
>
> I hope somebody can help me with this issue. Thanks a lot!
>


Re: [twitter-dev] Re: Introduce yourself!

2010-02-22 Thread Andrew Badera
I heard the ante's been up'd to a train.

--ab



On Mon, Feb 22, 2010 at 10:47 AM, Scott Wilcox  wrote:
> I hear to get a link in that space you have to be sleeping with one of the 
> team ;)
>
> On 22 Feb 2010, at 14:19, twittelator wrote:
>> I'd love feature parity with Twitter web - like a flag to home
>> timeline that would include RT's. I'd like access to xAUTH like some
>> other vendors already have, to have Apple Push Notification Service
>> built in to twitter's device delivery options, and while I'm
>> fantasizing, a link to our app in the ad-space!
>>
>> http://stone.com
>>
 So. Who are you, what do you do, what have you built, and what feature do
 you most want to see added?
>
>


Re: [twitter-dev] Re: Bulk creation of Twitter Accounts

2010-02-19 Thread Andrew Badera
Other than screen scraping and email harvesting? Nope, sorry.

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Fri, Feb 19, 2010 at 4:56 PM, Abigail Fabien  wrote:
> Do you know of any mechanism for creating those accounts?
>
> On Feb 19, 3:42 pm, Andrew Badera  wrote:
>> There are certainly valid use cases for automatic account creation,
>> but I have yet to see a valid mechanism for preventing spam using same
>> creation method.
>>
>> ∞ Andy Badera
>> ∞ +1 518-641-1280 Google Voice
>> ∞ This email is: [ ] bloggable [x] ask first [ ] private
>> ∞ Google me:http://www.google.com/search?q=andrew%20badera
>>
>> On Fri, Feb 19, 2010 at 4:39 PM, neal rauhauser  wrote:
>>
>> >    This is not only not something that can be done automatically, but even
>> > if you have a legitimate need, say brand protection for a large operation,
>> > you can still get blocked from registering accounts if you have too many. I
>> > think we got to around a hundred and then got the door slammed on our
>> > fingers.
>>
>> >     Perhaps there are larger social media operations who are better
>> > connected with Twitter and they have a different arrangement.
>>
>> > On Fri, Feb 19, 2010 at 3:20 PM, Abigail Fabien  wrote:
>>
>> >> Hello All,
>>
>> >> I'm in the process of creating an extension of my system. I want to be
>> >> able to create twitter accounts for my clients so that I could keep
>> >> them up to date.
>>
>> >> Does anyone know of any api or if at all twitter allows for the bulk
>> >> or automated creation of twitter accounts?
>>
>> >> Thank you
>>
>> > --
>> > mailto:n...@layer3arts.com //
>> > GoogleTalk: nrauhau...@gmail.com
>> > GV: 202-642-1717
>


Re: [twitter-dev] Bulk creation of Twitter Accounts

2010-02-19 Thread Andrew Badera
There are certainly valid use cases for automatic account creation,
but I have yet to see a valid mechanism for preventing spam using same
creation method.

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Fri, Feb 19, 2010 at 4:39 PM, neal rauhauser  wrote:
>
>    This is not only not something that can be done automatically, but even
> if you have a legitimate need, say brand protection for a large operation,
> you can still get blocked from registering accounts if you have too many. I
> think we got to around a hundred and then got the door slammed on our
> fingers.
>
>     Perhaps there are larger social media operations who are better
> connected with Twitter and they have a different arrangement.
>
>
>
> On Fri, Feb 19, 2010 at 3:20 PM, Abigail Fabien  wrote:
>>
>> Hello All,
>>
>> I'm in the process of creating an extension of my system. I want to be
>> able to create twitter accounts for my clients so that I could keep
>> them up to date.
>>
>> Does anyone know of any api or if at all twitter allows for the bulk
>> or automated creation of twitter accounts?
>>
>> Thank you
>
>
>
> --
> mailto:n...@layer3arts.com //
> GoogleTalk: nrauhau...@gmail.com
> GV: 202-642-1717
>


Re: [twitter-dev] Re: banned from search?

2010-02-19 Thread Andrew Badera
but it DOES offer commercial licensing ... still informal, but
formalizing as we speak ...

--ab


On Fri, Feb 19, 2010 at 4:30 PM, Dean Collins  wrote:
> Great yet again the fact that twitter is a free service and doesn't offer 
> commercial licenses bites us in the ass.
>
> Ticket filed.
>
>
>
>
>
> Cheers,
>
> Dean
>
>
>
>
> -Original Message-
> From: twitter-development-talk@googlegroups.com 
> [mailto:twitter-development-t...@googlegroups.com] On Behalf Of Brian Sutorius
> Sent: Friday, February 19, 2010 3:32 PM
> To: Twitter Development Talk
> Subject: [twitter-dev] Re: banned from search?
>
> The official help page relating to this is here:
> http://help.twitter.com/forums/10713-troubleshooting/entries/42646-i-can-t-find-my-tweets-in-twitter-search
> If you believe your account has been removed from search for one of
> the reasons mentioned and would like it put back, file a ticket (while
> logged in as the account) at http://bit.ly/twicket and our Support
> team will get back to you.
>
> Brian
>
> On Feb 19, 9:36 am, TJ Luoma  wrote:
>> This has been a problem for months. Some people just don't have their tweets
>> show up in search, ever.
>>
>> I reported one of these for a friend via getsatisfaction months ago. No
>> change.
>>
>> On Feb 19, 2010, at 12:31 PM, Dean Collins  wrote:
>>
>>  I just came across this article 
>> recentlyhttp://shegeeks.net/5-tips-to-avoid-being-filtered-from-twitter-search/
>>
>> And read with interest this comment "Did you know that
>> Twitteris beginning to filter out tweets from
>> Twitter
>> Search ?"
>>
>> The article suggests "Head to Twitter search .
>> Enter the following in the search box:  *from:username*, without the
>> @symbol. For example:"
>>
>> So I did so for my personal account and tweets are showing up 
>> "http://search.twitter.com/search?q=from%3Adeancollins";
>>
>> But the twitter account for my webapp 
>> forwww.LiveNascarChat.comare not showing
>> up?  "http://search.twitter.com/search?q=from%3Alivenascarchat ";
>>
>> Does this mean the accounthttp://twitter.com/livenascarchatis banned from
>> search and people searching for "Nascar" will not find it or am I missing
>> something?
>>
>> Cheers,
>>
>> Dean
>


Re: [twitter-dev] Introduce yourself!

2010-02-19 Thread Andrew Badera
This almost feels Google Buzz API inspired :P

Andy Badera. Jackass tech consultant, .NET geek extraordinaire and
CTO. Take your pick on the priority of those three. Been working with
the Twitter API since November or December 2007. I wrote the first
.NET client posting simultaneously to both Pownce (whodat?) and
Twitter. (First .NET client for Pownce, period.)

Features? I could go on forever.

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Fri, Feb 19, 2010 at 3:20 PM, Abraham Williams <4bra...@gmail.com> wrote:
> We have not had an introductions thread in a long time (or ever that I could
> find) so I'm starting one. Don't forget to add an answer to the tools thread
> [1](Gmail link [2]) as well.
> I'm Abraham Williams, I've been working with the Twitter API and this group
> since early 2008. I do mostly freelance Drupal and Twitter API integration
> and personal projects. I love seeing the creative projects developers build
> or integrate with the API and look forward to meeting many of you at Chirp.
> TwitterOAuth [3] the first PHP library to support OAuth is built and
> maintained by me, and will hopefully see a new release soon. I also built a
> fun Chrome extension [4] that integrates common friends and followers into
> Twitter profiles.
> The feature I would most like added to the API is a conversation method to
> get replies to a specific status.
> So. Who are you, what do you do, what have you built, and what feature do
> you most want to see added?
> @Abraham
> [1] http://groups.google.com/group/twitter-development-talk/browse_thread/thread/c7cdaa0840f0de84/
> [2] https://mail.google.com/mail/#inbox/12680cd0fa59011e
> [3] https://chrome.google.com/extensions/detail/npdjhmblakdjfnnajeomfbogokloiggg
> [4] http://code.google.com/p/twitter-api/issues/detail?id=142
> --
> Abraham Williams | Community Advocate | http://abrah.am
> Project | Out Loud | http://outloud.labs.poseurtech.com
> This email is: [ ] shareable [x] ask first [ ] private.
> Sent from Seattle, WA, United States


Re: [twitter-dev] Fail on Capture the Access Token in JS

2010-02-19 Thread Andrew Badera
A 401 often indicates a poorly-formed signature. I would take the
output of your JavaScript request and compare it visually with the
output of a good reference implementation, like Abraham's lib.
Sometimes it's hard to predict exactly what your output will look like
when trying to port across platforms/languages, even if the logic
appears correct.

Also, consider taking a dependency on a known good reference JS
implementation, like the one found on Google Code:

http://code.google.com/p/oauth/source/browse/#svn/code/javascript

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Thu, Feb 18, 2010 at 7:59 PM, Fernando Jorge  wrote:
> Hello, my name is Fernando, I am a Brazilian and developed a
> 'TwitterLib' JavaScript to be able to manage all the power of
> Twitter.Eu used the OAuth login to perform (and to show the extension
> name as the "From" in a tweet: D), but I have a problem in getting the
> Access Token, or better explained, Twitter me returns "401 Forbidden".
> I checked every line of code and found absolutely nothing that could
> damage, having considered until the code of Abraham's done in PHP Lib
> OAuth.The code function that captures the "access_token" and makes the
> request is available on PasteBin: http://pastebin.com/m7f4aa5c5 note
> that the same code is in JavaScript, because that I need help in that
> essentially no parte.Se find any fault, please return me and I can
> pass the functions performed by this function.
>
> Dwell (forward) returns.
>
> Detail: The Request Token is normally captured for information of all.
>


Re: [twitter-dev] Re: Application Suspended

2010-02-14 Thread Andrew Badera
Yet TweetAdder and Hummingbird are still kicking around and active?

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Sun, Feb 14, 2010 at 5:51 PM, Tim Haines  wrote:
> Dewald,
> Try looking in the google cache.  I'm surprised it was allowed to live for
> as long as it did.
>  http://74.125.155.132/search?q=cache:o2N2KuZsuYgJ:www.gotwitr.com/+gotwitr&cd=1&hl=en&ct=clnk
> It was basically a spam enabler.
> T.
>
> On Mon, Feb 15, 2010 at 11:27 AM, Dewald Pretorius  wrote:
>>
>> I cannot comment on what Jim's site did or didn't do, since he has
>> pulled all descriptive information from the site.
>>
>> Nevertheless, it is highly disturbing that applications are being
>> suspended without any notice. This particular site seems to have had a
>> contact form, plus it was OAuth, so the owner could have been
>> contacted via the email address on file for the Twitter user that owns
>> the application.
>>
>> Yes, some apps do stuff that warrant suspension. But, to just suspend
>> an app with no communication is bad.
>>
>> If Twitter don't want to give some sites the opportunity to correct
>> transgressive behavior (I know they do communicate in some cases), at
>> the very least send an email to the owner with, "Your service has been
>> suspended because...", and give a clear path and instructions on how
>> the situation can be remedied as soon as possible.
>>
>> I'm going to say it again, Twitter: Your rules are vague and nebulous.
>> Not everyone understands and interprets the rules the way you do
>> internally.
>>
>> You must realize that actions like these sometimes shout so loud that
>> we cannot hear when you say, "We care about our developers."
>>
>> Rightly or wrongly, here's a developer who has lost face with his user
>> base, and has been in the dark for 4 days now. The message it sends to
>> us, the other developers, is a very bad message. If you properly
>> communicated with Jim, he probably wouldn't even have posted about it
>> here.
>>
>> On Feb 14, 3:56 pm, Jim Fulford  wrote:
>> > Hello, I need some help.  4 days ago I started getting emails from my
>> > users that they could not login to our site using the Oauth service.
>> > I checked my site and it said my application had been suspended.   I
>> > did not get any email from Twitter, they just deactivated my
>> > application so nothing works.  I have sent in two support tickets, but
>> > gotten no response.  2 days ago, I took my site downwww.gotwitr.com
>> > so that I would stop getting support email from my users.
>> >
>> > I have had this site up for 5 months, and I have over 5000 users have
>> > used the service.  I am so glad that I have never charged for the
>> > service, this would be a nightmare.
>> >
>> > If they would let me know what our site, or one of our users did to
>> > get banned, we would be glad to fix it.   We have tried to make our
>> > site as Twitter API friendly as possible.
>> >
>> > We are 100% Oauth, we have never saved or requested any users
>> > passwords.
>> > We only let our users hit the Twitter API 1000 times in a 24 hour
>> > period
>> > We have all of our tools that follow or unfollow use individual user
>> > verification, (no mass follow or unfollow)
>> >
>> > An email with the issue would have been great.
>> >
>> > Not getting a response in the last 4 days that my site has been down
>> > is really not acceptable!
>> >
>> > Thanks
>
>


Re: [twitter-dev] Profile avatars with AWS S3 versioning

2010-02-12 Thread Andrew Badera
On Fri, Feb 12, 2010 at 10:02 PM, Abraham Williams <4bra...@gmail.com> wrote:
> Now that Amazon S3 supports versioning couldn't profile avatars use static
> URLs and let browsers handle the caching with ETags?
> More info on S3 Versioning: http://goo.gl/CMch
> Abraham
>
> --
> Abraham Williams | Community Advocate | http://abrah.am
> Project | Out Loud | http://outloud.labs.poseurtech.com
> This email is: [ ] shareable [x] ask first [ ] private.
> Sent from Seattle, WA, United States

+1

--ab


Re: [twitter-dev] Twitter Engineering Blog

2010-02-10 Thread Andrew Badera
On Wed, Feb 10, 2010 at 1:43 AM, Dewald Pretorius  wrote:
> Really very cool.
>
> http://engineering.twitter.com/


Nice find, haven't heard of this elsewhere yet.

The Twitter Text libraries are certainly useful to know about.

I created a quick C# port of Matt's twitter-text-java to possibly
replace a tokenized URL parsing process I'm currently using in an app:

http://code.google.com/p/ntwittertext/

One or two of the URL regex pattern component patterns need some tweaking ...

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera


Re: [twitter-dev] .NET and oAuth update problems

2010-02-03 Thread Andrew Badera
>From Shannon's original stuff, or something more recent? I'd worked
with OAuthBase.cs in the past, but seemed to recall there were
explicit exceptions in that ver of that stuff ... maybe a year ago
now?

--ab


On Wed, Feb 3, 2010 at 7:57 PM, ryan alford  wrote:
> I don't want to take credit for it as it is from Shannon Whitley's OAuth
> library.
>
> Ryan
>
> Sent from my DROID
>
> On Feb 3, 2010 7:53 PM, "Andrew Badera"  wrote:
>
> Interesting, for some reason I thought there were a few explicit
> exceptions that had to be made, but your solution looks pretty
> elegant.
>
> --ab
>
>
>
> On Wed, Feb 3, 2010 at 7:48 PM, ryan alford  wrote:
>> I have it working ...


Re: [twitter-dev] .NET and oAuth update problems

2010-02-03 Thread Andrew Badera
Interesting, for some reason I thought there were a few explicit
exceptions that had to be made, but your solution looks pretty
elegant.

--ab



On Wed, Feb 3, 2010 at 7:48 PM, ryan alford  wrote:
> I have it working and have had it working for months.  My code is
> open-source and written in C#.
>
> http://twiteclipseapi.codeplex.com/
>
> I haven't tried every special character, though I haven't run across a
> character that didn't work.
>
> Ryan
>
> Sent from my DROID
>
> On Feb 3, 2010 6:53 PM, "Andrew Badera"  wrote:
>
> Are you following the proper URL encoding? Basic .NET URLEncode
> doesn't meet OAuth's encoding spec. I forget what it is offhand, but
> they aren't 100% equivalent.
>
> ∞ Andy Badera
> ∞ +1 518-641-1280 Google Voice
> ∞ This email is: [ ] bloggable [x] ask first [ ] private
> ∞ Google me: http://www.google.com/search?q=andrew%20badera
>
>
>
> On Wed, Feb 3, 2010 at 6:50 PM, John Meyer  wrote:
>> has anybody on a .NE...


Re: [twitter-dev] .NET and oAuth update problems

2010-02-03 Thread Andrew Badera
Are you following the proper URL encoding? Basic .NET URLEncode
doesn't meet OAuth's encoding spec. I forget what it is offhand, but
they aren't 100% equivalent.

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Wed, Feb 3, 2010 at 6:50 PM, John Meyer  wrote:
> has anybody on a .NET library had problems with doing an oAuth connection
> and then posting an update with special characters such as !?  We're having
> that problem on TwitterVB and I wanted to know if somebody has gotten it
> fixed yet?
>


Re: [twitter-dev] DMs are automatically tweeted (not what I want!) :)

2010-01-31 Thread Andrew Badera
that could be read as "but it's ok to give your password to
applications using oauth."



On Sun, Jan 31, 2010 at 11:38 AM, Raffi Krikorian  wrote:
> don't give your passwords to applications that are not using oauth :P
>
> On Sat, Jan 30, 2010 at 7:58 PM, Jesse Stay  wrote:
>>
>> Except that the largest culprit of these (not going to name names) doesn't
>> use OAuth.
>>
>> On Fri, Jan 29, 2010 at 8:25 PM, Kevin Marshall 
>> wrote:
>>>
>>> Also check what apps you've granted access to:
>>>
>>> https://twitter.com/account/connections
>>>
>>> and remove any that you no longer want to have access...
>>>
>>> - Kevin
>>> http://wow.ly
>>>
>>> On Fri, Jan 29, 2010 at 10:23 PM, Abraham Williams <4bra...@gmail.com>
>>> wrote:
>>> > Change your password.
>>> > Abraham
>>> >
>>> > On Tue, Jan 26, 2010 at 08:50, SDF 
>>> > wrote:
>>> >>
>>> >> I can't find an answer to how or why this is happening nor can I
>>> >> figure out how to stop the madness :)
>>> >>
>>> >> Since testing a "tweet this" on a client's site (or so I can narrow
>>> >> down) my DM's are automatically becoming tweets. This is happening for
>>> >> auto-dms and personal dms.
>>> >>
>>> >> So if I receive a dm such as:
>>> >> abcuser: hi there thanks for the follow
>>> >>
>>> >> then the tweet that gets posted within 8 hours is:
>>> >> [abcuser] hi there thanks for the follow
>>> >> via api
>>> >>
>>> >> I cannot delete it via tweetdeck but I can from ubertwitter on my
>>> >> blackberry.
>>> >>
>>> >> How can I stop it from auto-tweeting my dms? Is there something in the
>>> >> API that I triggered somehow?
>>> >>
>>> >> Any help would be appreciated. Thanks!
>>> >>
>>> >>
>>> >>
>>> >
>>> >
>>> >
>>> > --
>>> > Abraham Williams | Community Advocate | http://abrah.am
>>> > Project | Out Loud | http://outloud.labs.poseurtech.com
>>> > This email is: [ ] shareable [x] ask first [ ] private.
>>> > Sent from Seattle, WA, United States
>>
>
>
>
> --
> Raffi Krikorian
> Twitter Platform Team
> http://twitter.com/raffi
>


Re: [twitter-dev] Twitter "non-clients"

2010-01-28 Thread Andrew Badera
Yes. We pull feeds for use elsewhere.

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Thu, Jan 28, 2010 at 8:49 AM, John Meyer  wrote:
> I was wondering if anybody was working on a Twitter non-client.  By that I
> mean an application that just uses Twitter for some back end purpose but not
> for an actual browsing client.
>


Re: [twitter-dev] Not able to read unicode from Twitter Response XML in C#.net

2010-01-25 Thread Andrew Badera
I think you want to make sure you're in UTF8:

http://refact.blogspot.com/2007/04/xml-encoding-to-utf8.html

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Mon, Jan 25, 2010 at 5:36 AM, Rejeev  wrote:
> Hi all,
>
> My Twitter response XML contains some unicode characters , I am not
> able to read that in C#.net. Its showing junk characters. Please help
> me to read that in proper text.
>
> Thanks,
> Rejeev
>


[twitter-dev] thank you

2010-01-20 Thread Andrew Badera
Thank you, Twitter team, for updating the status blog relatively
promptly this morning. That's a welcome change.

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera


Re: [twitter-dev] @ Message read rate for non-followers

2010-01-18 Thread Andrew Badera
On Mon, Jan 18, 2010 at 3:00 AM, Ken Dobruskin  wrote:
> Zero percent, and report for spam.
>
>> Date: Sun, 17 Jan 2010 22:13:33 -0800
>> Subject: [twitter-dev] @ Message read rate for non-followers
>> From: abstar...@gmail.com
>> To: twitter-development-talk@googlegroups.com
>>
>> Hey Guys,
>>
>> Do you know what % of people read @ messages if you are not a follower
>> + targeting them based on keywords or search api's?
>>
>> Thanks,
>> Abir

++ to reporting as spam.

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera

> 
> Windows Live: Keep your friends up to date with what you do online.


Re: [twitter-dev] Twitter Oauth Issues

2010-01-13 Thread Andrew Badera
Server timestamp difference?

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Wed, Jan 13, 2010 at 4:16 PM, Proxdeveloper  wrote:
> Hello folks, I'm developing a twitter desktop client for windows using
> the Oauth method, but for some reason I'm getting this error while
> requesting an Access token "The remote server returned an error: (401)
> Unauthorized.".
>
> This issue is only happening in my development PC, I've tried the app
> in other computers and Internet Connections and it works great, I'm
> guessing this is happening because I make too much requests to twitter
> from the same computer.
>
> Could anyone help me on this issue ?
> Thanks.
>


Re: [twitter-dev] Download avatar 2009 for free

2010-01-11 Thread Andrew Badera
Cameron,

Google groups does respect SPF records, so if you tighten that down in
your DNS setup, you can avoid this crap ...

--ab



On Mon, Jan 11, 2010 at 12:47 PM, Cameron Kaiser  wrote:
>> > > I would suggest that whoever is running this group put all new members
>> > > on moderated (or even all on moderated) because a nasty spambot is
>> > > running around currently. I've also seen porn spam sent about Angelina
>> > > Jolie lately.
>> >
>> > All new members are automatically moderated, which is why posts from new
>> > users tend to come in bunches when one of the moderators clears the queue.
>>
>> well, guess one got through.
>
> Please look at the headers of that "one" more carefully. In this case, it
> was a joejob of an existing approved member (in this case, yours truly).
> As it happens, I had been mulling over implementing SPF on my local server,
> and this is now a good time to do it. However, that is not a failure of
> moderation.
>
> --
>  personal: http://www.cameronkaiser.com/ 
> --
>  Cameron Kaiser * Floodgap Systems * www.floodgap.com * ckai...@floodgap.com
> -- If your happiness depends on anyone else, you've got a problem. -- R. Bach 
> -
>


Re: [twitter-dev] Download avatar 2009 for free

2010-01-11 Thread Andrew Badera
On Mon, Jan 11, 2010 at 12:43 PM, John Meyer  wrote:
> On 1/11/2010 10:40 AM, Cameron Kaiser wrote:
>>>
>>> I would suggest that whoever is running this group put all new members
>>> on moderated (or even all on moderated) because a nasty spambot is
>>> running around currently. I've also seen porn spam sent about Angelina
>>> Jolie lately.
>>>
>>
>> All new members are automatically moderated, which is why posts from new
>> users tend to come in bunches when one of the moderators clears the queue.
>>
>>
>
>
> well, guess one got through.

You'll note:

1. That's Cameron's address.
2. Cameron is far from new here.
3. This is an old spoofing problem, many months old now, across Google
Groups. It's ridiculously easy to do, and overly difficult to manage.

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera


Re: [twitter-dev] Mass account creation

2010-01-07 Thread Andrew Badera
I would point them to examples of other apps (local news spammers come
to mind) that have recently been blacklisted.

That aside, I for one am 100% opposed to giving anyone this sort of
tool. Not that certain other people on this list haven't already done
so for profit, sadly.

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Thu, Jan 7, 2010 at 7:50 AM, Jonathan Markwell
 wrote:
> Hi All,
>
> Would be interested to hear both the community's opinion on this and
> the official Twitter view.
>
> I have a client that wants to create thousands of new accounts that
> they can use to send out a wide variety of niche interest tweets. They
> already have a quote from an outsourcing company that can do the work
> and are keen to go ahead. The accounts will, for the most part, be
> automated but I'm encouraging them to ensure each gets at least some
> human participation in them on a regular basis.
>
> I'm apprehensive about this and I'm trying to disuade them from going
> ahead. I'm not convinced that accounts that are primarily automated,
> especially when set up on this scale can add that much value to the
> ecosystem. Their feeling is quite the opposite and they believe the
> audience they are working to provide for will find this extremely
> valuable. In addition they are confident, and have some data to back
> it up, that what they are creating will bring a huge number of new
> real users to Twitter.
>
> What are your thoughts on this?
>
> Jon.
>
> --
> Jonathan Markwell
> Engineer | Founder | Connector
>
> Inuda Innovations Ltd, Brighton, UK
>
> Web application development & support
> Twitter & Facebook integration specialists
> http://inuda.com
>
> Organising the world's first events for the Twitter developer Community
> http://TwitterDeveloperNest.com
>
> Providing a nice little place to work in the middle of Brighton -
> http://theskiff.org
>
> Measuring your brand's visibility on the social web - http://HowSociable.com
>
> mob: 07766 021 485 | tel: 01273 704 549 | fax: 01273 376 953
> skype: jlmarkwell | twitter: http://twitter.com/jot
>


Re: [twitter-dev] Re: .NET Servers

2009-12-22 Thread Andrew Badera
Hey Shannon,

The application process can be expedited if the network partner knows
you and pushes it. If you want a referral to a reliable partner, hit
me up off-list.

This current project, we applied and got approved <48 hours.

I like the shared DB thought.

--ab


On Tue, Dec 22, 2009 at 10:20 AM, Shannon Whitley
 wrote:
> Thanks for the feedback, Andy.  I'll run your thoughts past GoGrid and
> see what they can do.  I could offer 2008 at the same price as 2003
> (if I drop the memory), but in my experience it's not even worth
> trying to run 2008 on less than a GB of RAM.
>
> I also want to know more about the ease with which folks can join
> BizSpark.  I applied, but haven't heard anything back.  One of my
> ideas was to run a shared SQL Server database for multiple developers
> under the BizSpark program.
>


Re: [twitter-dev] .NET Servers

2009-12-22 Thread Andrew Badera
Good stuff Shannon, I was paying that much ($24.99) or more for shared
2003 hosting per month not too long ago.

Too bad the 2008, especially 64-bit, stuff is significantly steeper.
At that price point, in my mind it becomes worth the minor hassle for
a lot of people to go BizSpark or WebsiteSpark and get all the
Windows/.NET licensing and hosting benefits that come with the
essentially free registration. If you're producing a software product
that involves .NET in any fashion, you're pretty much a shoe-in.

Any chance GoGrid can bring that stuff down even further on the 2008
side? Or, if you are a *Spark partner, can they offer discounts
specifically for partners? I negotiated a fairly big colo deal
recently, and with BizSpark membership, we're not paying a monthly fee
for our 2008 x64 hosts, which seemed to be a pretty common thing among
hosting providers who endorse the *Spark programs.

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Tue, Dec 22, 2009 at 2:20 AM, Shannon Whitley
 wrote:
> I develop various applications using .NET tools (and PHP).  For many
> of my projects, I really need to run my own servers; shared webhosting
> just doesn't cut it (and that's going to be especially true when I get
> access to the firehose -- soon, I hope).
>
> I've been frustrated over the past year.  Even though costs have come
> down, it's still been too expensive to run a server on my own.  I have
> a feeling a lot of us are in the same boat.
>
> Luckily, I met some people on Twitter who work for a company called
> GoGrid.  We discussed the low number of hosting sites for .NET devs
> and the high prices.  GoGrid made me a deal (and I apologize if this
> sounds like a sales pitch, but I hope you find the information
> useful).  The deal is, if I manage the orders from the .NET community,
> I can offer devs a deeply discounted rate on GoGrid servers.  So, I'm
> passing the information onto the .NET devs on the Twitter list.
>
> If you'd like to know more, read the post below.  You can contact me
> with any questions.
>
> http://www.voiceoftech.com/swhitley/?p=837
>


Re: [twitter-dev] 168.143.162.36... Connection timed out

2009-12-20 Thread Andrew Badera
Probably better to email your IP address directly and not display it
publicly ...

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Sun, Dec 20, 2009 at 2:51 PM, shiplu  wrote:
> My external IP address is 202.56.7.116
> Its dynamic. 202.56.7.* part is fixed.
>
> --
> Shiplu Mokaddim
> My talks, http://talk.cmyweb.net
> Follow me, http://twitter.com/shiplu
> SUST Programmers, http://groups.google.com/group/p2psust
> Innovation distinguishes bet ... ... (ask Steve Jobs the rest)
>


Re: [twitter-dev] Re: hits, visits, etc to my tweets

2009-12-18 Thread Andrew Badera
http://lmgtfy.com/?q=bit.ly&l=1

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Fri, Dec 18, 2009 at 6:42 AM, Frank  wrote:
> What a bit.ly kink?
> How do I get and apply one to my tweet?
>
>
> On Dec 17, 10:01 am, Terry Jones  wrote:
>> > "Frank" == Frank   writes:
>>
>> Frank> Is there any way the number of hits on my tweet?  I am interested
>> Frank> only in the number of folks who have viewed or visited ... not the
>> Frank> names nor the numbers of posts?  This might include mostly
>> Frank> unregistered viewers
>>
>> If your tweet includes a bit.ly link, you can go to the bit.ly URL with a +
>> sign appended, and see stats there.
>>
>> Terry
>


Re: [twitter-dev] Some links are throwing "DNS error - cannot find server"

2009-12-18 Thread Andrew Badera
DNS was attacked yesterday or last night. Issues are probably still
ongoing/being sorted out.

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Fri, Dec 18, 2009 at 5:18 AM, Sanjay  wrote:
> Is it at my end or others are also facing this? I am getting "DNS
> error - cannot find server" for following urls - http://apiwiki.twitter.com/,
> http://help.twitter.com/forums/31935/entries, 
> http://help.twitter.com/forums/10713/entries.
> I can log in and see timeline meaning twitter is available but these
> links are giving errors. Status says there was an outage some 3 hours
> back. Is it because of this?
>


Re: [twitter-dev] iPhone image uploading

2009-12-17 Thread Andrew Badera
If that really a response from Twitter? Looks more like it's on your
app's side (SWAG) ...

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Thu, Dec 17, 2009 at 9:54 AM, Infinity 320  wrote:
> Hello guys!
>
> I have found on the twitter-site this faq:
>
>> The image update methods require multipart form data. They do not accept a 
>> URL to an image not do they accept the raw image bytes. They instead require 
>> the data to be delivered in the form of a file upload filed as defined in 
>> RFC1867. The content-type attribute of the image field is checked for valid 
>> image type. If you are using PHP/CURL there is a known bug that has since 
>> been fixed in the CVS version of PHP. Most installations are not yet using 
>> this version and therefore fail during image upload.
>
> I wrote a little code to upload a profile image to my twitter, but
> somethings wrong.
> Here's my code:
>
>    - (void)uploadProfileImage {
>        UIImage *myImage = [UIImage imageNamed:@"pic1.png"];
>        NSData *myImageData = [[NSData alloc]
> initWithData:UIImagePNGRepresentation(myImage)];
>        NSString *bodyString = [NSString stringWithFormat:@"image=%@",
> [[[NSString alloc] initWithData:myImageData
> encoding:NSUTF8StringEncoding] autorelease]];
>
>        NSString *apiUrl = @"http://twitter.com/account/
> update_profile_image.json";
>
>        NSURL *url = [NSURL URLWithString:apiUrl];
>        NSMutableURLRequest *updateRequest = [NSMutableURLRequest
> requestWithURL:url
>                                                                               
>                                                   
> cachePolicy:NSURLRequestReloadIgnoringCacheData
>                                                                               
>                                           
> timeoutInterval:TWITTER_SEND_UPDATE_TIMEOUT];
>        [updateRequest setHTTPShouldHandleCookies:NO];
>        [updateRequest setHTTPMethod:@"POST"];
>        [updateRequest setValue:@"application/x-www-form-urlencoded"
> forHTTPHeaderField:@"Content-Type"];
>        [updateRequest setHTTPBody:[bodyString
> dataUsingEncoding:NSASCIIStringEncoding allowLossyConversion:YES]];
>        [updateRequest setValue:[NSString stringWithFormat:@"%d", [bodyString
> length]] forHTTPHeaderField:@"Content-Length"];
>
>        NSLog(@"Trying to connect...");
>        NSURLConnection *theConnection = [[NSURLConnection alloc]
> initWithRequest:updateRequest delegate:self];
>
>        if (theConnection) {
>                //_receivedData = [[NSMutableData data] retain];
>                NSLog(@"Connected!");
>        } else {
>                NSLog(@"Not connected!");
>                // Inform the user that the download could not be made
>        }
> }
>
>
> And one more method needed:
>
>    - (void)connection:(NSURLConnection *)connection
> didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)
> challenge {
>        if ([challenge previousFailureCount] == 0) {
>                NSURLCredential *newCredential = [NSURLCredential
> credentialWithUser:@"username" password:@"password"
> persistence:NSURLCredentialPersistenceNone];
>                [[challenge sender] useCredential:newCredential
> forAuthenticationChallenge:challenge];
>        } else {
>                [[challenge sender] cancelAuthenticationChallenge:challenge];
>                NSLog(@"Invalid username and password!");
>        }
> }
>
>
> And with this method I am receiving the information from twitter:
>
>    - (void)connection:(NSURLConnection *)connection didReceiveData:
> (NSData *)data {
>        NSLog([[[NSString alloc] initWithData:data
> encoding:NSASCIIStringEncoding] autorelease]);
> }
>
> But I am getting some strange error. The response isn't a json answer,
> it is a html-like answer. Maybe do you have any idea why is that?
>


Re: [twitter-dev] hits, visits, etc to my tweets

2009-12-17 Thread Andrew Badera
How might you envision a third party service delivering this, Raffi?
Wouldn't it be a bit difficult without tracking code on-page?

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Thu, Dec 17, 2009 at 9:46 AM, Raffi Krikorian  wrote:
> no, unfortunately there isn't.  there may be a third party service that does
> this, however.
>
> On Thu, Dec 17, 2009 at 2:55 AM, Frank  wrote:
>>
>> Is there any way the number of hits on my tweet?  I am interested only
>> in the number of folks who have viewed or visited ... not the names
>> nor the numbers of posts?  This might include mostly  unregistered
>> viewers
>
> --
> Raffi Krikorian
> Twitter Platform Team
> http://twitter.com/raffi
>


Re: [twitter-dev] Re: Retweet API methods returning 404

2009-12-17 Thread Andrew Badera
Now that's just plain crazytalk.

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Thu, Dec 17, 2009 at 8:47 AM, Rich  wrote:
> I wish when they disabled features like this they told us!
>
> On Dec 17, 1:12 pm, Marco Kaiser  wrote:
>> okay - just noticed that they work on my whitelisted account, but not on a
>> regular account. so yeah - looks as if RTs are down right now in general.
>>
>> Marco
>>
>> 2009/12/17 Marco Kaiser 
>>
>> > They are working for me, both on the API and the website - are they back
>> > for you, too? Or are just some users affected?
>>
>> > Marco
>>
>> > 2009/12/17 Abraham Williams <4bra...@gmail.com>
>>
>> > Retweets are disabled on twitter.com. I don't see any status message
>> >> announcing it though.
>>
>> >> Abraham
>>
>> >> On Thu, Dec 17, 2009 at 06:05, Dimebrain  wrote:
>>
>> >>> The following retweet methods have started returning 404's in our unit
>> >>> testes:
>>
>> >>>http://api.twitter.com/1/statuses/retweeted_by_me.json
>> >>>http://api.twitter.com/1/statuses/retweeted_to_me.json
>> >>>http://api.twitter.com/1/statuses/retweets_of_me.json
>> >>>http://api.twitter.com/1/statuses/retweets/[any_status_id].json
>>
>> >>> Anyone else having this issue, or know what happened to these API
>> >>> methods?
>>
>> >> --
>> >> Abraham Williams | Awesome Lists |http://bit.ly/sprout608
>> >> Project | Intersect |http://intersect.labs.poseurtech.com
>> >> Hacker |http://abrah.am|http://twitter.com/abraham
>> >> This email is: [ ] shareable [x] ask first [ ] private.
>> >> Sent from Madison, WI, United States
>


Re: [twitter-dev] Retweet API methods returning 404

2009-12-17 Thread Andrew Badera
Personally, my unit's testes don't call the Twitter API ...

Seeing the same 404s on retweet calls however.

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Thu, Dec 17, 2009 at 7:05 AM, Dimebrain  wrote:
> The following retweet methods have started returning 404's in our unit
> testes:
>
> http://api.twitter.com/1/statuses/retweeted_by_me.json
> http://api.twitter.com/1/statuses/retweeted_to_me.json
> http://api.twitter.com/1/statuses/retweets_of_me.json
> http://api.twitter.com/1/statuses/retweets/[any_status_id].json
>
> Anyone else having this issue, or know what happened to these API
> methods?
>
>


Re: [twitter-dev] delete a tweet with twitterVB .net library API

2009-12-14 Thread Andrew Badera
Hrmmm, the method that says DeleteUpdate might just possibly delete
updates. But that's just from glancing at the TwitterVB site for a
mere 30 seconds, I could be wrong.

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Sun, Dec 13, 2009 at 11:09 PM, KellyP  wrote:
> Is there a way to delete previously posted tweets using the twitter
> API?  I'm using the twitterVB .net library and would like to delete
> all tweets older than 1 week.
>
> Any help would be appreciated.
>
> Thanks.
>


Re: [twitter-dev] Unexplored Dark Underbelly of OAuth

2009-12-10 Thread Andrew Badera
Nothing new, this has been argued about/discussed before. Life is a
series of trade-offs ...

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Thu, Dec 10, 2009 at 9:09 PM, Dewald Pretorius  wrote:
> OAuth poses a very real risk for any downloadable application. Think
> TweetDeck. Think Tweetie. Etc.
>
> I'm not an expert at OAuth, but if my understanding is correct, then
> an application will either have to include its Consumer Key Secret in
> its compiled code (which most will probably do), or dynamically
> request it from its host server (which breaks offline usage).
>
> Now, will there be hackers and scammers that will decompile
> TweetDeck's code to get their grubby hands on its Consumer Key Secret?
> You bet your bottom dollar there will be. Many.
>
> Once they have that, they can spam the living shits out of Twitter,
> and there is nothing, NOTHING, Twitter can do to stop it.
>
> TweetDeck cannot request or generate a new Consumer Key Secret,
> because that breaks all its currently installed apps.
>
> Twitter cannot block by app because they will disable all legitimate
> TweetDeck users. And they cannot block by IP address, if the scammers
> are clever in their use of proxies.
>
> Just a thought...
>
> Dewald
>


[twitter-dev] lists as anti-spam tools

2009-11-26 Thread Andrew Badera
Hi dev list,

Twitter: I'm now seeing bambibots and other spammers using lists as a
way to boost their network. Seems like an equally great opportunity to
pursue spammers back down those paths ... which you all are probably
already on top of ... but if not, please consider!

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera


Re: [twitter-dev] Re: Twitter app marked "inactive"?

2009-11-24 Thread Andrew Badera
Gotcha, thanks for the info Brian.

∞ Andy Badera


On Tue, Nov 24, 2009 at 7:48 PM, Brian Sutorius  wrote:
> Listerine was temporarily suspended pending a conversation between the
> developer and the owners of the registered mark "Listerine." This was
> a rare case, so if you do have any specific questions about
> objectionable application behavior as outlined in our policies, don't
> hesitate to email us at a...@twitter.com :)
>
> Brian
>
> On Nov 24, 10:24 am, Michael Steuer  wrote:
>> Thanks for providing all 4 links Brian...
>>
>> So why was Listerine blocked? I tried out the app once and didn't
>> necessarily see any behavior that was objectionable based on the link you
>> sent?
>>
>> On 11/24/09 10:11 AM, "Brian Sutorius"  wrote:
>>
>>
>>
>> > OAuth tokens are suspended when the applications break our API Rules,
>> > API Terms of Service, Twitter Rules, or Twitter Terms of Service. I
>> > understand that four separate documents can be a lot to keep up with,
>> > but I've put them at the bottom of this post for your convenience. To
>> > ask any questions about these rules as they apply to application
>> > behavior, simply email a...@twitter.com .
>>
>> > Thanks!
>> > Brian
>>
>> >http://twitter.com/apirules
>> >http://apiwiki.twitter.com/Terms-of-Service
>> >http://help.twitter.com/forums/26257/entries/18311
>> >http://twitter.com/terms
>>
>> > On Nov 23, 5:34 pm, Andrew Badera  wrote:
>> >> Could you help educate the rest of the community as to what might
>> >> cause that to happen, so we can avoid it?
>>
>> >> Thanks-
>> >> ƒ Andy Badera
>> >> ƒ +1 518-641-1280 Google Voice
>> >> ƒ This email is: [ ] bloggable [x] ask first [ ] private
>> >> ƒ Google me:http://www.google.com/search?q=andrew%20badera
>>
>> >> On Mon, Nov 23, 2009 at 12:46 PM, Brian Sutorius 
>> >> wrote:
>> >>> Hey Luis,
>> >>> Your OAuth token has been suspended. For more information about this,
>> >>> please write to a...@twitter.com and I'll be happy to talk with you.
>>
>> >>> Brian
>>
>> >>> On Nov 21, 6:28 pm, "luis, syndeomedia"  wrote:
>> >>>> Hey all,
>>
>> >>>> My Twitter app "Listerine" has been marked "inactive" in my
>> >>>> oauth_clients page and I don't know why. (http://twitter.com/
>> >>>> oauth_clients/details/45072) Could someone shed some light on this
>> >>>> please?
>>
>> >>>> :luis
>


Re: [twitter-dev] Flood of c*ck sucking spam

2009-11-24 Thread Andrew Badera
:)



On Tue, Nov 24, 2009 at 4:10 PM, Peter Denton  wrote:
> wow, thats cool.
>
> Hey, sorry group, thought that was just a reply to Andrew.
>
> On Tue, Nov 24, 2009 at 1:08 PM, Hedley Robertson
>  wrote:
>>
>> > Hahaha I wish I could retweet your mail.
>> You can?
>> http://bit.ly/8TJUe6
>>
>>
>> On Tue, Nov 24, 2009 at 12:49 PM, Peter Denton 
>> wrote:
>>>
>>> Hahaha I wish I could retweet your mail.
>>>
>>> Sent from my iPhone
>>>
>>> On Nov 24, 2009, at 12:41 PM, Andrew Badera  wrote:
>>>
>>>> There seems to be a flood of bambibots with a (not very) blurry avatar
>>>> of someone brushing their teeth with a skin flute. Any chance Twitter
>>>> HQ is aware of, and working to mitigate, this?
>>>>
>>>> ∞ Andy Badera
>>>> ∞ +1 518-641-1280 Google Voice
>>>> ∞ This email is: [ ] bloggable [x] ask first [ ] private
>>>> ∞ Google me: http://www.google.com/search?q=andrew%20badera
>>
>
>


[twitter-dev] Flood of c*ck sucking spam

2009-11-24 Thread Andrew Badera
There seems to be a flood of bambibots with a (not very) blurry avatar
of someone brushing their teeth with a skin flute. Any chance Twitter
HQ is aware of, and working to mitigate, this?

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera


Re: [twitter-dev] any idea??

2009-11-24 Thread Andrew Badera
I'd heard something about max upload size being way down ... but
that's anecdotal and perhaps unrelated ...

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Tue, Nov 24, 2009 at 11:15 AM, creative  wrote:
> Does anyone have any idea why the update background image just stopped
> working?
>


Re: [twitter-dev] Re: Twitter app marked "inactive"?

2009-11-24 Thread Andrew Badera
Thanks Brian. As Michael asked, can we get any specifics on why
Listerine was blocked?

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Tue, Nov 24, 2009 at 1:11 PM, Brian Sutorius  wrote:
> OAuth tokens are suspended when the applications break our API Rules,
> API Terms of Service, Twitter Rules, or Twitter Terms of Service. I
> understand that four separate documents can be a lot to keep up with,
> but I've put them at the bottom of this post for your convenience. To
> ask any questions about these rules as they apply to application
> behavior, simply email a...@twitter.com .
>
> Thanks!
> Brian
>
> http://twitter.com/apirules
> http://apiwiki.twitter.com/Terms-of-Service
> http://help.twitter.com/forums/26257/entries/18311
> http://twitter.com/terms
>
> On Nov 23, 5:34 pm, Andrew Badera  wrote:
>> Could you help educate the rest of the community as to what might
>> cause that to happen, so we can avoid it?
>>
>> Thanks-
>> ∞ Andy Badera
>> ∞ +1 518-641-1280 Google Voice
>> ∞ This email is: [ ] bloggable [x] ask first [ ] private
>> ∞ Google me:http://www.google.com/search?q=andrew%20badera
>>
>>
>>
>> On Mon, Nov 23, 2009 at 12:46 PM, Brian Sutorius  
>> wrote:
>> > Hey Luis,
>> > Your OAuth token has been suspended. For more information about this,
>> > please write to a...@twitter.com and I'll be happy to talk with you.
>>
>> > Brian
>>
>> > On Nov 21, 6:28 pm, "luis, syndeomedia"  wrote:
>> >> Hey all,
>>
>> >> My Twitter app "Listerine" has been marked "inactive" in my
>> >> oauth_clients page and I don't know why. (http://twitter.com/
>> >> oauth_clients/details/45072) Could someone shed some light on this
>> >> please?
>>
>> >> :luis
>


Re: [twitter-dev] Twitter session state not found

2009-11-24 Thread Andrew Badera
Were it me, I'd probably be asking RPX people, since Twitter has no
concept of a "session" and this clearly is a third-party app issue.

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Tue, Nov 24, 2009 at 3:51 AM, Berreh  wrote:
> When i try to login with RPXNow and a Twitter account in a Safari
> webbrowser i get the error "Twitter session state not found". What
> does this error mean and how can i fix this?
>
> When i try to login again after this error, no problem occurs and
> everything is ok. Very strange..
>


Re: [twitter-dev] Re: Twitter app marked "inactive"?

2009-11-23 Thread Andrew Badera
Could you help educate the rest of the community as to what might
cause that to happen, so we can avoid it?

Thanks-
∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Mon, Nov 23, 2009 at 12:46 PM, Brian Sutorius  wrote:
> Hey Luis,
> Your OAuth token has been suspended. For more information about this,
> please write to a...@twitter.com and I'll be happy to talk with you.
>
> Brian
>
> On Nov 21, 6:28 pm, "luis, syndeomedia"  wrote:
>> Hey all,
>>
>> My Twitter app "Listerine" has been marked "inactive" in my
>> oauth_clients page and I don't know why. (http://twitter.com/
>> oauth_clients/details/45072) Could someone shed some light on this
>> please?
>>
>> :luis
>


[twitter-dev] Re: Where is the Twitter WADL?

2009-11-16 Thread Andrew Badera

I like your thinking.

∞ Andy Badera



On Mon, Nov 16, 2009 at 2:51 PM, Andy Freeman  wrote:
>
> Please don't spend any time on a WADL.
>
> The twitter interface is both simple and small.  If it's an obstacle
> to someone 
>
> On Oct 20, 8:01 am, Chad Etzel  wrote:
>> Hi Edd,
>>
>> We may provide a WADL in the future, but right now one is not available.
>>
>> -Chad
>>
>>
>>
>> On Tue, Oct 20, 2009 at 5:33 AM, Edd  wrote:
>>
>> > Hi All,
>>
>> > I am keen to start implementing a Twitter Web Service application but
>> > I can't find any published WADL in the Twitter API docs. My IDE
>> > (NetBeans) contains a partial API WADL but I can't find the full API
>> > anywhere. Could someone please point me in the direction of this? I'm
>> > suprised it's so hard to find.
>>
>> > Many thanks,
>>
>> > Edd- Hide quoted text -
>>
>> - Show quoted text -
>


[twitter-dev] Re: Moderators, can you trim this address from list?

2009-11-13 Thread Andrew Badera

Thanks Cameron.

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Fri, Nov 13, 2009 at 12:29 PM, Cameron Kaiser  wrote:
>
>> I'm getting them too, and I haven't sent anything... I think they're going
>> to everyone on the list
>
> Okay. I see only an rjmol...@gmail which is probably forwarded. I set that
> account to No E-mail (Web Only) so messages won't get sent to it. Let me
> know if this doesn't fix the problem.
>
> --
>  personal: http://www.cameronkaiser.com/ 
> --
>  Cameron Kaiser * Floodgap Systems * www.floodgap.com * ckai...@floodgap.com
> -- We only pretend to have standards. -- Unknown producer, ABC-TV 
> -
>


[twitter-dev] Moderators, can you trim this address from list?

2009-11-13 Thread Andrew Badera

I've been hit with NDRs on this address numerous times recently. If
you could unsubscribe that address, it would be great.

User: if you're actually active on list, please use a reliable email
server, and not that box in your mom's basement.

Thanks in advance-
∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera




-- Forwarded message --
From: Mail Delivery Subsystem 
Date: Fri, Nov 13, 2009 at 12:16 PM
Subject: Returned mail: see transcript for details
To: and...@badera.us


The original message was received at Sun, 8 Nov 2009 11:55:19 -0500 (EST)
from localhost [127.0.0.1]

  - The following addresses had permanent fatal errors -


  - Transcript of session follows -
... Deferred: Operation timed out with rjmolesa.homelinux.net.
Message could not be delivered for 5 days
Message will be deleted from queue

Final-Recipient: RFC822; rjmol...@rjmolesa.homelinux.net
Action: failed
Status: 4.4.7
Remote-MTA: DNS; rjmolesa.homelinux.net
Last-Attempt-Date: Fri, 13 Nov 2009 12:16:53 -0500 (EST)


-- Forwarded message ------
From: Andrew Badera 
To: twitter-development-t...@googlegroups.com
Date: Sat, 7 Nov 2009 04:19:01 -0500
Subject: [twitter-dev] Re: My Twitter app suddenly and inexplicably
stopped working...can't figure out why

What happens if you plug in your callback URL locally into a browser?
Same result, or does the page successfully load?

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Fri, Nov 6, 2009 at 3:12 PM, Mike  wrote:
>
> I have been developing a Twitter application for the past several
> weeks and have had no problems whatsoever interfacing with the Twitter
> API for authentication and updating profile settings. I am developing
> this app on a shared Linux hosting plan through GoDaddy, if that makes
> any difference.
>
> Last night, I was incorporating some URL rewriting functions into the
> htaccess file and suddenly whenever I went to sign in to my app via
> Twitter, the site would hang. What would happen exactly is I would
> click "sign in" on my site, get redirected to Twitter to enter my
> login info, and then the browser would just hang at the Twitter screen
> with the message "Redirecting you back to the application". A few
> minutes later, the browser would report the server dropped the
> connection, or something to that effect.
>
> I then undid all of the URL rewriting changes to the htaccess file and
> restored all of the pages to their original states (before the URL
> rewriting) but this did not have any effect. I was still seeing the
> same problem. I have tested this on several different browsers, all
> with the same results.
>
> However, I am intermittently able to connect and get successfully
> redirected back to my app; however, this is pretty rare. The
> redirection might work 1 time out of every 8 attempts.
>
> I called GoDaddy and after spending a total of almost 10 minutes on
> hold, the tech informed me that everything was fine with their server.
>
> I am using OAuth and Jason Mathai's Twitter-async PHP wrapper to
> communicate with the API, which has been working great for me.
>
> I am about to tear my hair out over this. I really have no clue where
> to begin troubleshooting. If anyone can help, I would truly appreciate
> it.
>
> Thanks.
>


[twitter-dev] Re: .NET Class for handling Twitter Updates and Rate Checks

2009-11-12 Thread Andrew Badera
A modicum of common sense would drive one to post appropriate content
in appropriate places ... and link to it.

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Thu, Nov 12, 2009 at 2:03 PM, ch...@stuffworldwide.com
 wrote:
> I sent it to the twitter people to post on their site but they asked
> me to post here as well... I was like... okay
>
> On Nov 10, 5:53 pm, Andrew Badera  wrote:
>> I for one tend to prefer Google Code or Code Plex for posting lengthy
>> chunks of code intended for resharing ...
>>
>> Also, LinqToTwitter is a pretty solid reference implementation ...
>> FWIW. (Not affiliated, just a user.)
>>
>> ∞ Andy Badera
>> ∞ +1 518-641-1280 Google Voice
>> ∞ This email is: [ ] bloggable [x] ask first [ ] private
>> ∞ Google me:http://www.google.com/search?q=andrew%20badera
>>
>> On Tue, Nov 10, 2009 at 5:49 PM, ch...@stuffworldwide.com
>>
>>
>>
>>  wrote:
>>
>> > Not many .NETexamples out there... here it is... have fun...
>>
>> > using System;
>>
>> > using System.Text;
>>
>> > using System.Net;
>>
>> > using System.IO;
>>
>> > using System.Xml;
>>
>> > namespace Tweeter
>>
>> > {
>>
>> >      public class TwitterTools
>>
>> >      {
>>
>> >            #region Members
>>
>> >            #endregion
>>
>> >            public TwitterTools()
>>
>> >            {
>>
>> >                  this.Initialize();
>>
>> >            }
>>
>> >            public TwitterTools(string userName,string password)
>>
>> >            {
>>
>> >                  this.UserName=userName;
>>
>> >                  this.Password=password;
>>
>> >                  this.Initialize();
>>
>> >            }
>>
>> >            private void Initialize()
>>
>> >            {
>>
>> >            }
>>
>> >            public void Dispose()
>>
>> >            {
>>
>> >            }
>>
>> >            #region Properties
>>
>> >            public string UserName=null;
>>
>> >            public string Password=null;
>>
>> >            #endregion
>>
>> >            #region Methods
>>
>> >            public int Update(string message)
>>
>> >            {
>>
>> >                  int retval=0;
>>
>> >                  string code=null;
>>
>> >                  string url="http://twitter.com/account/
>> > rate_limit_status.xml";      //gen.Get("twitterRateService");
>>
>> >                  string result=null;
>>
>> >                  try
>>
>> >                  {
>>
>> >                        result=this.Request(url + "?"
>>
>> >                              ,null
>>
>> >                              ,"GET"
>>
>> >                              );
>>
>> > //                      gen.Test(result);
>>
>> >                  }
>>
>> >                  catch
>>
>> >                  {
>>
>> >                        result=null;
>>
>> >                  }
>>
>> >                  if(result==null)
>>
>> >                        retval=2;
>>
>> >                  else
>>
>> >                  {
>>
>> >                        //parse results
>>
>> >                        try
>>
>> >                        {
>>
>> >                              XmlDocument doc=new XmlDocument();
>>
>> >                              doc.LoadXml(result);
>>
>> >                              XmlNodeList nodes=doc.SelectNodes("/hash/
>> > remaining-hits");
>>
>> >                              int remaining=System.Convert.ToInt32
>> > (nodes[0].InnerText);
>>
>> >                              if(remaining<=0)
>>
>> >                                    retval=2;
>>
>> >                              nodes=null;
>>
>> >                              doc=null;
>>
>&

[twitter-dev] Re: Getting started with a twitter application

2009-11-12 Thread Andrew Badera

no need to chase changes if you take a dependency on a solid library.

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Thu, Nov 12, 2009 at 2:37 PM,   wrote:
> I  was in the same boat as you a few months ago when an associate asked me
> to develop a twitter appllication and I had never even seen twitter. I was
> able to use the supplied documentation and produce a working
> test application with no help. I believe the documentation is the best place
> to start. I uses C# and accessed the twitter API directly for a standalone
> Windows application. I looked into some of the third party tools such as
> Twitterizer but in the end did my own. That was just a personal decision
> because there are some good things in the twtter world. I have been
> following this group since I started the project even though I had to
> abandon it after financing fell through. The  Twittwer API and the related
> tools are rapidly evolving. Be prepared to spen a lot of time chasing
> changes.
>
> Good Luck
> DRP
>
>
>  Original Message 
> Subject: [twitter-dev] Getting started with a twitter application
> From: albana 
> Date: Thu, November 12, 2009 1:09 am
> To: Twitter Development Talk
> 
>
>
> Hi everybody!
>
> I am about to develop a twitter application and I am stuck with
> starting the development of the application.How should I connect my
> application with a twitter api?
>


[twitter-dev] Re: Work At Home - Earn $900 Per Week

2009-11-12 Thread Andrew Badera

Only if the recipient is paying attention. I know Google Groups
respects SPF records. I don't remember seeing DKIF info in the email
headers though, but I could have simply ignored it.

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Thu, Nov 12, 2009 at 5:22 AM, Leon Spencer  wrote:
> Would domain keys help?
>
> ____
> From: Andrew Badera 
> To: twitter-development-talk@googlegroups.com
> Sent: Thu, November 12, 2009 2:18:05 AM
> Subject: [twitter-dev] Re: Work At Home - Earn $900 Per Week
>
>
> Yep. The email address is the only piece used to authenticate the
> sender. SPF and similar is the only way to lock that down further
> without losing the convenience of mailing to list.
>
> It's easy enough to reproduce, try it yourself with SMTP (on some
> other group like I did, not here ;).
>
> ∞ Andy Badera
> ∞ +1 518-641-1280 Google Voice
> ∞ This email is: [ ] bloggable [x] ask first [ ] private
> ∞ Google me: http://www.google.com/search?q=andrew%20badera
>
>
>
> On Thu, Nov 12, 2009 at 5:13 AM, Tim Haines  wrote:
>> How does that work?  He's sending using someone else's email address
>> that's
>> already been approved to post on this list?
>> Tim.
>>
>> On Thu, Nov 12, 2009 at 11:03 PM, Andrew Badera  wrote:
>>>
>>> It's spoofed spam FWIW ... Google Groups (and probably a lot of email
>>> lists) provide little real authentication. Tightening up SPF records
>>> seems to be a fix. (use -all)
>>>
>>> ∞ Andy Badera
>>> ∞ +1 518-641-1280 Google Voice
>>> ∞ This email is: [ ] bloggable [x] ask first [ ] private
>>> ∞ Google me: http://www.google.com/search?q=andrew%20badera
>>>
>>>
>>>
>>> On Thu, Nov 12, 2009 at 5:01 AM, Tim Haines  wrote:
>>> > You should be sending this as a DM.
>>> >
>>> > On Thu, Nov 12, 2009 at 10:55 PM, MANOJ NEHA 
>>> > wrote:
>>> >>
>>> >> Work At Home - Earn $900 Per Week
>>> >>
>>> >> Just Work 1-2 Hours A Day & Earn $27,000 A Month
>>> >> No Investments, Work anytime From Anywhere !!
>>> >>
>>> >> Visit Here   http://e-way-solutions.blogspot.com/    And Start Earning
>>> >> Now.
>>> >
>>
>>
>


[twitter-dev] Re: Work At Home - Earn $900 Per Week

2009-11-12 Thread Andrew Badera

Yep. The email address is the only piece used to authenticate the
sender. SPF and similar is the only way to lock that down further
without losing the convenience of mailing to list.

It's easy enough to reproduce, try it yourself with SMTP (on some
other group like I did, not here ;).

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Thu, Nov 12, 2009 at 5:13 AM, Tim Haines  wrote:
> How does that work?  He's sending using someone else's email address that's
> already been approved to post on this list?
> Tim.
>
> On Thu, Nov 12, 2009 at 11:03 PM, Andrew Badera  wrote:
>>
>> It's spoofed spam FWIW ... Google Groups (and probably a lot of email
>> lists) provide little real authentication. Tightening up SPF records
>> seems to be a fix. (use -all)
>>
>> ∞ Andy Badera
>> ∞ +1 518-641-1280 Google Voice
>> ∞ This email is: [ ] bloggable [x] ask first [ ] private
>> ∞ Google me: http://www.google.com/search?q=andrew%20badera
>>
>>
>>
>> On Thu, Nov 12, 2009 at 5:01 AM, Tim Haines  wrote:
>> > You should be sending this as a DM.
>> >
>> > On Thu, Nov 12, 2009 at 10:55 PM, MANOJ NEHA 
>> > wrote:
>> >>
>> >> Work At Home - Earn $900 Per Week
>> >>
>> >> Just Work 1-2 Hours A Day & Earn $27,000 A Month
>> >> No Investments, Work anytime From Anywhere !!
>> >>
>> >> Visit Here   http://e-way-solutions.blogspot.com/    And Start Earning
>> >> Now.
>> >
>
>


[twitter-dev] Re: Work At Home - Earn $900 Per Week

2009-11-12 Thread Andrew Badera

It's spoofed spam FWIW ... Google Groups (and probably a lot of email
lists) provide little real authentication. Tightening up SPF records
seems to be a fix. (use -all)

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Thu, Nov 12, 2009 at 5:01 AM, Tim Haines  wrote:
> You should be sending this as a DM.
>
> On Thu, Nov 12, 2009 at 10:55 PM, MANOJ NEHA  wrote:
>>
>> Work At Home - Earn $900 Per Week
>>
>> Just Work 1-2 Hours A Day & Earn $27,000 A Month
>> No Investments, Work anytime From Anywhere !!
>>
>> Visit Here   http://e-way-solutions.blogspot.com/    And Start Earning
>> Now.
>


[twitter-dev] Re: Retrieving infomation from twitter search api

2009-11-11 Thread Andrew Badera

So, is the message complete in the raw XML response but not after the
Java toCharacters() call?

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Wed, Nov 11, 2009 at 7:35 PM, pipigu85  wrote:
>
> the raw file is in atom format and looks like this:
>
> 
>
> tag:search.twitter.com,2005:5607828675
>
>
> 2009-11-11T02:43:13Z
>
>
> http://twitter.com/green_stormroqr/
> statuses/5607828675" rel="alternate"/>
>
>
> just voted "Selena Gomez" on "Who's your
> favorite Disney star?"! Vote now  ➤ http://bit.ly/o2wGh
>
>
> just voted &quot;Selena Gomez&quot; on
> &quot;Who&apos;s your favorite <b>Disney</b> star?
> &quot;! Vote now  ➤ <a href="http://bit.ly/
> o2wGh">http://bit.ly/o2wGh</a>;
>
>
> 2009-11-11T02:43:13Z
>
>
> http://a3.twimg.com/profile_images/
> 467518411/061403-1wt_normal.jpg" rel="image"/>
>
>
> 
>    
>
>
> <a href="http://lolquiz.com";
> rel="nofollow">LOL quiz</a>
>
>
> en
>
>
> 
>
> green_stormroqr (stormie verrett)
>      http://twitter.com/green_stormroqr
>
> 
>
> 
>
>
>
> On Nov 12, 12:37 am, Andrew Badera  wrote:
>> What does the RAW XML response look like?
>>
>> Reduce variables. Examine your inputs.
>>
>> ∞ Andy Badera
>> ∞  +1 518-641-1280+1 518-641-1280Google Voice
>> ∞ This email is: [ ] bloggable [x] ask first [ ] private
>> ∞ Google me:http://www.google.com/search?q=andrew%20badera
>>
>>
>>
>> On Wed, Nov 11, 2009 at 1:15 AM, pipigu85  wrote:
>>
>> > I'm not sure. The code is basically what i put with it getting some
>> > other data like the date, link. All seems fine except this ommitting
>> > content problem.
>>
>> > Even when i change to event.toString() in place of asCharacters(), it
>> > still ommits out the information so it should not be due to
>> > asCharacters() right?
>>
>> > Sorry, I'm still very new to all these Java, hoping someone could help
>> > enlighten me.- Hide quoted text -
>>
>> - Show quoted text -
>


[twitter-dev] Re: Retrieving infomation from twitter search api

2009-11-11 Thread Andrew Badera

What does the RAW XML response look like?

Reduce variables. Examine your inputs.

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Wed, Nov 11, 2009 at 1:15 AM, pipigu85  wrote:
>
> I'm not sure. The code is basically what i put with it getting some
> other data like the date, link. All seems fine except this ommitting
> content problem.
>
> Even when i change to event.toString() in place of asCharacters(), it
> still ommits out the information so it should not be due to
> asCharacters() right?
>
> Sorry, I'm still very new to all these Java, hoping someone could help
> enlighten me.
>


[twitter-dev] Re: Retrieving infomation from twitter search api

2009-11-10 Thread Andrew Badera

I've not seen this issue. Do you have a character encoding switch or
miss somewhere?

Also, doesn't asCharacters have some depth to it? Is there an overload
or property at play here?

"XMLEvent.asCharacters()

The asCharacters() method return a java.xml.stream.Characters object.
>From this object you can obtain the characters themselves, as well as
see if the characters are CDATA, white space, or ignorable white
space."

∞ Andy Badera
∞ +1 518-641-1280 Google Voice
∞ This email is: [ ] bloggable [x] ask first [ ] private
∞ Google me: http://www.google.com/search?q=andrew%20badera



On Tue, Nov 10, 2009 at 9:10 PM, pipigu85  wrote:
>
> Hi, I am currently using the twitter search api to retrieve tweets but
> some of the tweets returned are not fully formed. I followed the link
> to the actual tweet itself and it seems that when it comes across
> tweets with  " " , it gets cut off
>
> Example: Actual tweet: Just Voted " I am voting for something"
>               Result that i see: Just Voted
>
> Is there anyway to retrieve the full tweet? I am using Eclipse, Java
> to do. Thanks!
>
> This is how i retrieve the search result:
>
> XMLInputFactory inputFactory = XMLInputFactory.newInstance();
>            InputStream in = new URL("http://search.twitter.com/
> search.atom?q=" + search + "&page=1&rpp=100").openStream();
>
>            XMLEventReader eventReader =
> inputFactory.createXMLEventReader(in);
>                     boolean inEntry = false;
>            Item currentItem = null;
>
>            while (eventReader.hasNext()) {
>               XMLEvent event = eventReader.nextEvent();
>
>               System.out.println(event);
>               if (event.isStartElement()) {
>                   StartElement startElement = event.asStartElement();
>                                     if (event.asStartElement().getName
> ().getLocalPart().equals("title")) {
>                           event = eventReader.nextEvent();
>                           String title = event.asCharacters().getData();
>                           if (!inEntry) {
>                                   channel.setTitle(title);//false
>                           } else {
>                                   currentItem.setTitle(title);//true
>                           }
>
>                       continue;
>                   }
>


  1   2   3   4   5   >