回答編集履歴
1
追記
test
CHANGED
@@ -7,3 +7,29 @@
|
|
7
7
|
アプリケーションの権限(Permissions)でアクセス権限(Access permission)に、書き込み権限(Read and write)があるかどうか。
|
8
8
|
|
9
9
|
トークンを振り出したアカウントからみてアプリのアクセス権が読み取りと書き込みになっているかを確認しましょう。
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
----
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
```python
|
18
|
+
|
19
|
+
print(tweet.content)
|
20
|
+
|
21
|
+
```
|
22
|
+
|
23
|
+
や
|
24
|
+
|
25
|
+
```python
|
26
|
+
|
27
|
+
print(tweet.json()['errors'][0]['code']
|
28
|
+
|
29
|
+
```
|
30
|
+
|
31
|
+
の結果を見てみましょう。
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
そして [https://developer.twitter.com/en/docs/basics/response-codes](https://developer.twitter.com/en/docs/basics/response-codes)のError Codesの説明を読みます。
|