Begin in API

Apr 30, 2023 at 05:08
490 개의 뷰
2 Replies
Oct 24, 2022 부터 멤버   게시물3
Apr 30, 2023 at 05:08
Hello

I tried to use windows command line to run api:
curl https://www.myfxbook.com/api/[email protected]&password=letsboogie

But I have this error:
<?xml version='1.0' encoding='UTF-8'?>
<response error='true' message='Required fields missing.'>
    <session></session>
</response>

What is the correct comman to run in windows environment
Oct 15, 2022 부터 멤버   게시물3
Apr 30, 2023 at 14:20
I am using python on Windows. There is a gitbub repo where all the API calls are already defined in a class, and it is working for me.

1) Copy the myfxbook.py into the same folder where you will create a second python script.
2) Create a script like: login.py, and paste the following code into it. Set your own email & password.

import myfxbook

fx = myfxbook.myfxbook('your own loging email for myfxbook.com', 'your own password')

print('Login: ',fx.login())
print('Logout: ',fx.logout())

3) Run the login.py after making sure you have python installed on windows:
    python login.py

output will be something like this:
D:\myFxbookCode> python login.py
Login: {'error': False, 'message': '', 'session': '5nfhOctg1UZOtGl52711'}
Logout: {'error': False, 'message': 'Logged out.'}

This shows it was able to login without an error, was given a session ID, and again logged out without any error.
Oct 15, 2022 부터 멤버   게시물3
Apr 30, 2023 at 14:21
Forgot to share the git repo:

https://github.com/Zold1/myfxbook-api
로그인 / 가입하기 to comment
You must be connected to Myfxbook in order to leave a comment
*상업적 사용 및 스팸은 허용되지 않으며 계정이 해지될 수 있습니다.
팁: 이미지/유튜브 URL을 게시하면 게시물에 자동으로 삽입됩니다!
팁: @기호를 입력하여 이 토론에 참여하는 사용자 이름을 자동으로 완성합니다.