Hello there,
I’m currently working on integrating Twitter in my Android app after successfully doing it in my iOS app. Under iOS there is a simple and powerful static method which helps to build a “Tweet” instance from JSON data without any call to the twitter API. I’ve searched how to do proceed the same way with Android but it seems there is no such method. The only solution seems to give the tweet IDs and then load them which I dont want to do because I already have all the required json result from my server.
Do you know how can I do this ? Build a Tweet instance by injecting my json ?
Thanks !