Class TwitterRESTService

java.lang.Object
com.codename1.io.ConnectionRequest
com.codename1.io.services.TwitterRESTService
All Implemented Interfaces:
IOProgressListener

public class TwitterRESTService extends ConnectionRequest
Calls to the Twitter REST API can be performed via this class although currently support for authentication isn't implemented due to the transition to oAuth instead of basic authentication.
  • Field Details

  • Constructor Details

    • TwitterRESTService

      public TwitterRESTService(String method)

      The constructor accepts the method to invoke

      Parameters
      • method: the api method to invoke e.g. "statuses/public_timeline"
    • TwitterRESTService

      public TwitterRESTService(String method, boolean post)

      The constructor accepts the method to invoke

      Parameters
      • method: the api method to invoke e.g. "statuses/public_timeline"

      • post: true for post requests and false for get request

    • TwitterRESTService

      public TwitterRESTService(String method, String version, boolean post)

      The constructor accepts the method to invoke

      Parameters
      • method: the api method to invoke e.g. "statuses/public_timeline"

      • version: the API version to send e.g. "1"

      • post: true for post requests and false for get request

  • Method Details

    • initToken

      public static String initToken(String consumerKey, String consumerSecret)

      Logs in to twitter as an application

      Parameters
      • consumerKey: the key to login with

      • consumerSecret: the secret to to login with

      Returns

      the authorization token

    • setToken

      public static void setToken(String token)

      For every request twitter now needs an authorization token

      Parameters
      • token: the token
    • equals

      public boolean equals(Object o)
      Description copied from class: ConnectionRequest
      Overrides:
      equals in class ConnectionRequest
    • hashCode

      public int hashCode()
      Description copied from class: ConnectionRequest
      Overrides:
      hashCode in class ConnectionRequest
    • readResponse

      protected void readResponse(InputStream input) throws IOException

      Callback for the server response with the input stream from the server. This method is invoked on the network thread

      Parameters
      • input: the input stream containing the response
      Throws
      • IOException: when a read input occurs
      Overrides:
      readResponse in class ConnectionRequest
      Throws:
      IOException
    • getParseTree

      public Hashtable<String,Object> getParseTree()

      Returns the full Hashtable parse tree read from the server

      Returns

      the parse tree

    • getStatusesCount

      public int getStatusesCount()

      Returns the number of statuses within the response

      Returns

      the number of statuses

    • getStatus

      public Hashtable<String,Object> getStatus(int offset)

      Returns the status at the given offset

      Parameters
      • offset: the offset for the status
      Returns

      the status hashtable

    • getIdStr

      public String getIdStr()

      Gets the id string of the first entry which is important if we want to set the id to start with in the next request

      Returns

      the id of the first entry