Thank you for your kindness and patience answer.

The ordinary man was MY BOSS..

Thanks again.


2011/4/13  <twitter-development-talk+nore...@googlegroups.com>:
>   Today's Topic Summary
>
> Group: http://groups.google.com/group/twitter-development-talk/topics
>
> Get friends who registered on my website? [1 Update]
> how do i know that a tweet i posted in twitter from my rails application? [1
> Update]
> Users/Lookup [4 Updates]
> Problem with twitter API [1 Update]
> The thinking behind not drawing attention to Unfollows? [2 Updates]
> Get user email from twitter [2 Updates]
> users/lookup.json [1 Update]
> Auto updates to twitter page [1 Update]
>
>  Topic: Get friends who registered on my website?
>
> Ig0r <ryzhkov.i...@gmail.com> Apr 12 04:20PM -0700 ^
>
> Anyone have any thoughts on this?
> Please guys...
>
>
> Thanks once again!
>
>
>
>
>
>  Topic: how do i know that a tweet i posted in twitter from my rails
> application?
>
> Arnaud Meunier <arn...@twitter.com> Apr 12 02:47PM -0700 ^
>
> Hey Anu,
>
> The tweet button currently doesn't support callbacks. However, there's this
> Enhancement ticket you can vote for:
> http://code.google.com/p/twitter-api/issues/detail?id=1835
>
> Arnaud / @rno <http://twitter.com/rno>
>
>
>
>
>
>
>  Topic: Users/Lookup
>
> Gabe <oneill.g...@gmail.com> Apr 12 12:15PM -0700 ^
>
> Hi,
> I have read all the users/lookup related posts and also scoured the
> internet looking for an appropriate example.I posted a question as a
> reply on one but don't see it so I am hoping someone can help a
> twitter api newbie.
>
> I just want to get results from users/lookup. I am using Abraham's
> Oauth library, which I have been able to get to work in other
> instances with no problems. I'm hoping it's my lack of understanding
> of how the syntax should be. Here is the code:
>
> // all values populated correctly
> $connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET,
> $OAuthKey, $OAuthSecret);
> // saw this example as correction of the following line; neither
> seems to work
> $userDeets = $connection->get('/users/lookup.json',
> array('screen_name' => 'biz,twitterapi'));
> // $userDeets = $connection->get('/users/lookup.json?
> screen_name=biz,twitterapi');
>
> foreach ($userDeets as $item)
> {
> echo $item->followers_count;
> echo "<br>";
> }
>
> Thanks in advance for any insight.
>
> -Gabe
>
>
>
> Abraham Williams <4bra...@gmail.com> Apr 12 12:25PM -0700 ^
>
> Try:
>
> $userDeets = $connection->get('users/lookup' array('screen_name' =>
> 'biz,twitterapi'));
>
> That should work.
>
> Abraham
> -------------
> Abraham Williams | Hacker Advocate | abrah.am
> <http://abrah.am>Just launched from Answerly <http://answerly.com>:
> InboxQ<http://inboxq.com>for Chrome
> @abraham <https://twitter.com/abraham> | github.com/abraham | blog.abrah.am
> This email is: [ ] shareable [x] ask first [ ] private.
>
>
>
>
>
>
> Gabe <oneill.g...@gmail.com> Apr 12 12:31PM -0700 ^
>
> Neither works. Am I processing the results correctly?
>
>
>
>
> Gabe <oneill.g...@gmail.com> Apr 12 01:06PM -0700 ^
>
> Thanks to Abraham for reminding me about var_dump which showed the
> results as NULL.
>
> At risk of outing myself as stupid I will do so anyway in case there
> might be someone out there who has also been searching for how to do
> this, from start to finish.
>
> This code works. The stupid part was not putting the entire URL in the
> get statement. I was errantly going by a different example. Assuming
> you are familiar with Abraham's Oauth library,
>
> $connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET,
> $OAuthKey, $OAuthSecret);
> $userDeets = $connection->get('http://api.twitter.com/1/users/
> lookup.json', array('screen_name' => 'biz, twitterapi'));
>
> //var_dump($userDeets);
>
> foreach ($userDeets as $item)
> {
> echo $item->screen_name . ": ";
> echo $item->followers_count;
> echo "<br>";
> }
>
>
>
>
>
>  Topic: Problem with twitter API
>
> Marco <marco.ciab...@gmail.com> Apr 12 12:53PM -0700 ^
>
> Hi
> I'm writing some SW who interact with twitter and some other social
> network.I've to request some information(with the autentication) to
> twitter profiles.Specifically i'd like to recover the email address of
> the user and also the email address of his friend.I've seen how i can
> autenticate with OAUTH and how recover some user profile
> inormation,but i haven't found nothing about the email address.
> Can you help me??
> Thanks
> Marco
>
>
>
>  Topic: The thinking behind not drawing attention to Unfollows?
>
> Whonew <haag.j...@gmail.com> Apr 11 04:47PM -0700 ^
>
> I just wanted to make clear that I was in no way questioning the rule.
>
> I was just curious about the reasoning behind it, from Twitter's POV.
>
> I, of course, came to the same logical conclusion that you did, Nick.
> That it was simply to maintain a positive atmosphere and avoid
> contention.
>
> Thanks for your thoughtful replies.
>
>
> - John
>
>
>
>
>
> Brian Sutorius <bsutor...@twitter.com> Apr 12 01:20PM -0700 ^
>
> For a little clarification, this policy item was added to our API
> Terms of Service with the release of our User Streams and Site Streams
> products. Both streams deliver negative events such as unfollows and
> unfavorites as distinct objects in the streams, so apps can adjust in
> real-time. This policy is intended to prevent the broadcast of these
> events to the end-user as notifications that the event happened.
>
> In general, reporting who has unfollowed User A back to User A through
> derivative methods (such as comparing their current follower list to a
> cached version) is discouraged, but not prohibited. That same user
> could come to the same conclusions through a similar method. Following
> the spirit of this policy item, though, you may not broadcast these
> kinds of events to other users (i.e. you may not show User C that User
> B unfollowed User A).
>
> As always, if you have any questions about our policies, you can email
> a...@twitter.com.
> Brian Sutorius
> Twitter API Policy
>
>
>
>
>
>  Topic: Get user email from twitter
>
> Marco <marco.ciab...@gmail.com> Apr 12 12:58PM -0700 ^
>
> But with an autorization is possible???
>
>
>
>
> Taylor Singletary <taylorsinglet...@twitter.com> Apr 12 01:09PM -0700 ^
>
> Email address will not returned to your from the Twitter API, whether you've
> authenticated a user or not -- it's not part of the package.
>
> If you'd like the user's email address, kindly ask for it in your
> application -- but I'd recommending having a related privacy policy in
> place.
>
> @episod <http://twitter.com/episod> - Taylor Singletary
>
>
>
>
>
>  Topic: users/lookup.json
>
> Gabe <oneill.g...@gmail.com> Apr 12 11:49AM -0700 ^
>
> If anyone can help me I would SO appreciate. I have successfully used
> Abraham's Twitter Oauth in the past, yet I am relatively new to
> Twitter API programming. I am trying to use users/lookup and
> understand that it has to be authenticated. I am not getting results
> and I have searched for clear examples but haven't found any,
>
> I think it is partly because I don't understand how to use the syntax.
> (That's why I like examples.) Anyway the code is here:
>
> $connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET,
> $OAuthKey, $OAuthSecret);
> // saw this example somewhere
> $userDeets = $connection->get('/users/lookup.json',
> array('screen_name' => 'biz,twitterapi'));
> // neither method seems to work. Advice on which one to use would
> also be nice.
> // $userDeets = $connection->get('/users/lookup.json?
> screen_name=biz,twitterapi');
>
> foreach ($userDeets as $item)
> {
> echo $item->followers_count;
> echo "<br>";
> }
>
> Again I'm hoping it's just something stupid syntactically that I'm
> doing. -Gabe
>
>
>
>
>
>  Topic: Auto updates to twitter page
>
> Pavan <tpavanbt...@gmail.com> Apr 12 08:08PM +0100 ^
>
> Thanks for the info Mohan.
> Hers is my requirement..
> As I said earlier, there'll be a twitter icon on my application(WWTS
> Application). If content editor of my application edits this info, saves it
> and clicks on it, it should redirect to http://www.twitter.com/pwc_WWTS and
> should auto post the update here.
>
> Pla let me know if this can be achievable. Thanks..
>
> Warm Regards,
> Pavan.
> Ph: 91-9731077222
> On 12 Apr 2011 15:14, "L. Mohan Arun" <mar...@gmail.com> wrote:
>
>
>
> --
> Twitter developer documentation and resources: http://dev.twitter.com/doc
> API updates via Twitter: http://twitter.com/twitterapi
> Issues/Enhancements Tracker:
> http://code.google.com/p/twitter-api/issues/list
> Change your membership to this group:
> http://groups.google.com/group/twitter-development-talk
>

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk

Reply via email to