Twitter apiへ接続ができない。
Mostrar comentarios más antiguos
現在MATLAB 2021bのDatafeed toolbox にあるtwitter関数を利用してapiにアクセスしようと試みています。
onsumerKey='x';%sorezore developper アカウントで入手した文字列を入力
ConsumerSecret='xx';
AccessToken='xxx';
AccessTokenSecret='xxxx';
c=twitter(ConsumerKey,ConsumerSecret,AccessToken,AccessTokenSecret)
結果として以下が出力

c.MetaData.errors.messageは以下
You currently have Essential access which includes access to Twitter API v2 endpoints only. If you need access to this endpoint, you’ll need to apply for Elevated access via the Developer Portal. You can learn more here: https://developer.twitter.com/en/docs/twitter-api/getting-started/about-twitter-api#v2-access-leve
アクセス権限をElevatedにする必要があるとのことなので、権限を以下のように変更。

上記にして再度各種キーとトークンを生成しても
Forbidden
の状況は変わりませんでした。
どのように設定を行えばよろしいでしょうか?
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre MATLAB Compiler en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!