I'm using related_results to show a conversation thread in a website application.
I want to migrate the api version to 1.1 but this function is not implemented.
Somebody know how it do that?
Thank you mates!
Official answer from Twitter is that no such feature will make it to API 1.1 :(
https://dev.twitter.com/discussions/11292
Related
I'm using a twitter API to fetch latest tweets from some person.
It was working well until 16 June 2013.
But now it gives me error - "410 error - rest api v1 not active" while fetching tweets.
Can anyone please help me out to migrate api version 1.1 over 1.0?
or
any other solution
Thanks
I never worked with twitter http api directly. If your twitter codebase is small then you can refactor your code by using a library or implementing some kind of abstraction to make migration to later minor API changes less painful.
As I can see from this article migration seems pretty straightforward. You should always authenticate your requests for all API calls.
API v1 was retired recently, as outlined here. To get up and running again, look at the changes from 1.0 to 1.1 here or here.
I've started to read something about certain Twitter API 1.0 deprecation deadline around march 2013, inviting all their users to migrate onto the 1.1 version of said API. The main difference between the 2 of them (among others) seems to be "the OAUTH thing".
Currently, I've been developing an iOS/Android app, which uses the search.twitter.com/search.json API with no major issues.
The nice thing is that "search.twitter.com" API is an unauthenticated one, and for now, it's more than enough for my needs. I "don't currently want to invest time" onto the OAUTH authentication right now.
On the other hand, and to be honest, I have no idea if the "search.twitter.com" API is the same thing as the 1.0 Twitter API. Is it? Have I been using Twitter API 1.0 without knowing it?
Does anyone know for sure if the search.twitter.com "API" is going to become "also" deprecated on March 2013?
Thanks!!
Finally, it looks like this API will be deprecated.
You can find more information on Twitter developers forum.
https://dev.twitter.com/discussions/12727
https://dev.twitter.com/discussions/14587
https://dev.twitter.com/discussions/14785
So it's time to move 1.1 and OAuth.
does anybody work with foursquare api and asp.net, do you know some basic tutorial, how to set the environment, do I need some api, how can I make my app to conect to 4sq and ask something. I work with asp.net mvc2, and any clue on this would be helpful.
Thanks in advance.
There are a couple of C# libraries available for the foursquare API, you can see the complete list here:
https://developer.foursquare.com/docs/libraries.html
In terms of tutorials, you can use the interactive query viewer on the foursquare website to get a sense of the data:
https://developer.foursquare.com/docs/venues/venues.html
(click 'try it now' and it will give you an interactive query console for the api!)
You can also get a walkthrough of how to do OAuth2 authentication on the website too:
https://developer.foursquare.com/docs/oauth.html
For what it's worth, when I was first playing with the API I found it useful to test out all of my queries using cURL, then once you use a library you're already a pro.
Hope that helps?
I want to develop a web application that uses the Twitter API.
Where can i find examples
thanks for replay. I have downloaded an app from this site - github.com/yusuke/sign-in-with-twitter I have deployed and its running, but its giving javax.el.PropertyNotFoundException: Property 'userId' not found on type twitter4j.Twitter this exception after giving log in credentials in twitter log in site. thanks in advance.
i am not able to resolve this issue. can anybody help on this
Search for 'twitter api java examples' in Google and you'll find plenty of examples.
See http://blog.richardadamdean.com/?p=89 for an example using Twitter4J.
As a connection library, you could use
Twitter4J on http://twitter4j.org/
java-twitter on http://code.google.com/p/java-twitter/
JTwitter on http://www.winterwell.com/software/jtwitter.php
You can use Java Twitter - a pure Java interface for the Twitter API.
http://code.google.com/p/java-twitter/
Documentation and examples are on that page too :)
Can any one suggest me to best C# twitter api for developing application with twitter api?. I want all the advance functionality of twitter in my application.
Twitterizer
Twitterizer is a .NET class library that provides an easy-to-use interface for the Twitter web api. It is written for developers. It's features are easy to discover and follow a consistent design pattern. http://www.twitterizer.net
LINQ to Twitter, if your app is LINQ-enabled.
"LINQ to Twitter is a LINQ Provider for the Twitter micro-blogging service. It uses standard LINQ syntax for queries and includes method calls for changes via the Twitter API."
I haven't used this myself, just found it when browsing and passing it on. It's interesting that if you search with the #linqtotwitter hashtag, you can see all the test tweets, which all start with "Ç".
Kindly follow the below link to get latest API for Twitter
Latest Twitter API
May I humbly suggest TweetSharp. It has full support for the API including the Search API and updates are released as soon as possible to address changes in the twitter API. (for instance, it already supports the upcoming GeoLocation APIs).
It's open source (MIT license), so you can use it free for pretty much anything you want.
Disclosure: I'm a project owner.