Аутентификация пользователя в stocktwits

Поиск метода для получения access_token для одного пользователя. Похоже, API-документация говорит, что можно аутентифицировать пользователя и получить access_token с помощью одного запроса curl:

cURL [ about cURL ]
// Token example
curl -X GET -u <username> -p https://api.stocktwits.com/api/2/oauth/authorize -d 'client_id=<client id>&response_type=token&redirect_uri=http://www.example.com&scope=read,watch_lists,publish_messages,publish_watch_lists,follow_users,follow_stocks'

// Code example
curl -X GET https://api.stocktwits.com/api/2/oauth/authorize -d 'client_id=<client id>&response_type=code&redirect_uri=http://www.example.com&scope=read,watch_lists,publish_messages,publish_watch_lists,follow_users,follow_stocks'

Но попробовал несколько попыток предоставить имя пользователя и пароль, используя пример токена, но stocktwits выглядит перенаправляющим на страницу входа. Эта функция была удалена или я где-то ошибаюсь?

1 ответ

Решение

Выглядит как неверное толкование документов. Вы не можете получить токен доступа через запросы самостоятельно. Документы государства

Your application requests authorization by redirecting your user to https://api.stocktwits.com/api/2/oauth/authorize with your client_id, response_type set to 'code' and the URL the user should be redirected back to after the authorization process (redirect_uri). Scopes can also be passed (scope) in a comma-delimited list to request further permissions. View the authorize call. Enter the following URL into your browser or direct your users to it for authentication:

Ваши пользователи вводят свои учетные данные в предоставленной форме после направления их на URL. Пожалуйста, смотрите https://stocktwits.com/developers/docs/authentication

Другие вопросы по тегам