Skip to content

Instantly share code, notes, and snippets.

@knishioka
Last active January 16, 2021 22:37
Show Gist options
  • Save knishioka/fdc6501923c9b7db218fc63febd74299 to your computer and use it in GitHub Desktop.
Save knishioka/fdc6501923c9b7db218fc63febd74299 to your computer and use it in GitHub Desktop.
moneyforward login attempt
import requests
s = requests.Session()
url = "https://id.moneyforward.com/sign_in"
payload = {"mfid_user[email]": "foo@example.com", "mfid_user[password]": "barbaz"}
s.post(url, data=payload)
res = s.get("https://moneyforward.com/bs/portfolio")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment