[twitter-dev] API response w/ IP

2011-05-22 Thread matthewvb
Is there a way to get the API to respond back with the IP address hitting it from the call? I'm running into a problem where something is eating away at my API hits / hour. I've put a simple script on a few isolated domains (non- Twitter calling ones) that are also having their API hits eaten up.

Re: [twitter-dev] API response w/ IP

2011-05-22 Thread Scott Wilcox
There is nothing provided by the API that can give you your own IP. Are you making OAuth authenticated calls? On 22 May 2011, at 18:18, matthewvb wrote: Is there a way to get the API to respond back with the IP address hitting it from the call? I'm running into a problem where something is

Re: [twitter-dev] API response w/ IP

2011-05-22 Thread Matthew Vanden Boogart
Thanks Scott. I'm making anonymous calls - nothing authenticated. Just pulling some profile/timeline info. -matthew On Sun, May 22, 2011 at 2:41 PM, Scott Wilcox sc...@dor.ky wrote: There is nothing provided by the API that can give you your own IP. Are you making OAuth authenticated calls?

Re: [twitter-dev] API response w/ IP

2011-05-22 Thread Scott Wilcox
Thats what I was thinking, shared hosting provider? On 22 May 2011, at 20:24, Matthew Vanden Boogart wrote: Thanks Scott. I'm making anonymous calls - nothing authenticated. Just pulling some profile/timeline info. -matthew On Sun, May 22, 2011 at 2:41 PM, Scott Wilcox sc...@dor.ky

Re: [twitter-dev] API response w/ IP

2011-05-22 Thread Matthew Vanden Boogart
Currently, yes. I thought assigning a unique IP to the domain would solve the problem, but apparently not. I'm working on testing it on a VPS through the same host. On Sun, May 22, 2011 at 3:26 PM, Scott Wilcox sc...@dor.ky wrote: Thats what I was thinking, shared hosting provider? On 22 May

Re: [twitter-dev] API response w/ IP

2011-05-22 Thread Scott Wilcox
Depends how they're routing the outbound traffic. You'll need to bind your calls to that IP. If its PHP and you're using CURL, I believe its CURLOPT_INTERFACE. On 22 May 2011, at 20:30, Matthew Vanden Boogart wrote: Currently, yes. I thought assigning a unique IP to the domain would solve the

Re: [twitter-dev] API response w/ IP

2011-05-22 Thread Matthew Vanden Boogart
Thanks - I'm going to try out that option in my curl commands. Greatly appreciate the helps Scott. On Sun, May 22, 2011 at 3:34 PM, Scott Wilcox sc...@dor.ky wrote: Depends how they're routing the outbound traffic. You'll need to bind your calls to that IP. If its PHP and you're using CURL, I