A simple JSON example to access MyFxBook

Apr 10, 2013 at 11:54
1,095 視聴
2 Replies
Apr 29, 2012からメンバー   4 投稿
Apr 10, 2013 at 11:54
Hi,

would somebody have a small JSON based example to share that would help in getting started with using JSON to retrieve and display data from MyFxBook?

Just a very basic one to help understand the structure of the way it's done, so e.g. have a login, retrieve something from MyFxBook and then writing that to the browser/display.

That would great!

Thanks,
M
May 15, 2013からメンバー   2 投稿
May 23, 2013 at 06:04
Sure, here you go:

This is in Java.

public Session getData(String username, String password) throws MalformedURLException, IOException{
Gson json = null;
URL url = null;
Session session = null;
String myfxbook= "https://www.myfxbook.com/api/login.json?";


URL url = new URL(myfxbook + "email=" + username + "&password=" + password);

InputStream is = url.openStream();
BufferedReader reader = new BufferedReader(new InputStreamReader(is));

json = new GsonBuilder().setPrettyPrinting().create();

session = json.fromJson(reader, Session.class); //puts the json into a bean



return session;
}
May 15, 2013からメンバー   2 投稿
May 23, 2013 at 06:04
Hmm, the forum ate the code...
サインイン / 登録 to comment
You must be connected to Myfxbook in order to leave a comment
*商用利用やスパムは容認されていないので、アカウントが停止される可能性があります。
ヒント:画像/YouTubeのURLを投稿すると自動的に埋め込まれます!
ヒント:この討論に参加しているユーザー名をオートコンプリートするには、@記号を入力します。