I am trying to obtain an access token for the Instagram API, but when I run this code in the CMD window on windows:
curl -F 'client_id=IDNUMBER' curl -F 'client_secret=CODE' curl -F 'grant_type=authorization_code' curl -F 'redirect_uri=URL' curl -F 'code=CODE' https://api.instagram.com/oauth/access_token
as outlined here:
https://instagram.com/developer/authentication/
I get this error:
curl (6) couldn't resolve host
What could be the issue?