A couple questions, I'm updating an app to use the new API. Logging in as the user into the dropbox website and it doesn't look like there are any apps registered to this account. My App Key is 1cqi2t0vya3poem.
I am able to call https://api.dropboxapi.com/1/oauth/request_token and I get a valid response. I take that info and plug it into https://api.dropboxapi.com/2/auth/token/from_oauth1 and I get this...
curl -X POST https://api.dropboxapi.com/2/auth/token/from_oauth1 -u "1cqi2t0vya3poem:xxxxxx" --header "Content-Type: application/json" --data "{\"oauth1_token\": \"IqL8EWxlEUvscVfa\", \"oauth1_token_secret\": \"xxxxxxxxxxx\"}"
{"error_summary": "invalid_oauth1_token_info/.","error": {".tag": invalid_oauth1_token_info"}}
Any help would be appreciated.