Package net.unto.twitter.methods

Examples of net.unto.twitter.methods.Request


  }

  @Test
  public void testModifiedSchemeAndPort() {
    Api api = Api.builder().scheme(Scheme.HTTPS).port(443).build();
    Request request = api.publicTimeline().build();
    assertEquals("https://twitter.com:443/statuses/public_timeline.json",
                 request.toString());
  }
View Full Code Here

TOP

Related Classes of net.unto.twitter.methods.Request

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.