Twitter apiへ接続ができない。
Ältere Kommentare anzeigen
現在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
の状況は変わりませんでした。
どのように設定を行えばよろしいでしょうか?
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu MATLAB Compiler finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!