[Solved] Submitting a search on a website using JAVA


The easiest way to do this requires getting an API key since MyFitnessPal’s API is private.

You will want to submit a request to http://www.myfitnesspal.com/api and check ‘Pull from MFP food database’ in the “API Interest: ” section.

If you’re approved and get the API key, then you will want to learn about basic HTTP. Your task requires a GET request, not POST (e.g. you want to GET data from the database, not POST data to the database). And once you’re at this stage, you’ll want to go back and check out Sumighosh’s link again.

1

solved Submitting a search on a website using JAVA