Access Twitter or Facebook API from Java ME app?

I am developing a Java ME application and I want to give it social features. Is it possible to connect to Facebook or Twitter directly from the application without an intermediate server?

+3
source share
2 answers

These APIs are just HTTP when it comes to bit-by-wire. Java ME supports HTTP with classes in the javax.microedition.io package. *.

http://java.sun.com/javame/reference/apis/jsr118/javax/microedition/io/Connector.html

http://java.sun.com/javame/reference/apis/jsr118/javax/microedition/io/HttpConnection.html

- , ISTR GET POST , , RESTful PUT DELETE.

+2

Java API Twitter

Facebook Java

, .

- - , API, , - (, , ).

!

+2

Source: https://habr.com/ru/post/1718762/


All Articles