gcpとtwitterを使おうとしたところ、TwitterOAuthの導入でエラーが出てしまいました。
composer.json
1{ 2 "require": { 3 "google/cloud-vision": "^1.5", 4 "google/apiclient": "^2.11", 5 } 6} 7 8 9> [Seld\JsonLint\ParsingException] 10 "./composer.json" does not contain valid JSON 11 Parse error on line 1: 12 {\ \ \ \ \"\r\e\ 13 ^ 14 Expected one of: 'STRING', 'NUMBER', 'NULL', 'TRUE', 'FALSE', '{', '[' 15 16 17composer require abraham/twitteroauthコマンドを実行すると上記のようになってしまいます。 18 19
編集後
composer.json
1{ 2 "require": { 3 "google/cloud-vision": "^1.5", 4 "google/apiclient": "^2.11" 5 } 6}
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/12/03 01:35
2021/12/03 01:36
2021/12/03 03:24
2021/12/03 07:04
2021/12/16 04:15