Skip to content

Commit d82fa0b

Browse files
committed
docs(changelog): 📝 update changelog
1 parent fe78d73 commit d82fa0b

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,14 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
## [0.7.5](https://github.com/sns-sdks/python-twitter/v0.7.4) (2021-02-17)
5+
## [0.7.6](https://github.com/sns-sdks/python-twitter/v0.7.6) (2021-04-07)
6+
7+
### Features
8+
9+
- New apis for bookmarks.
10+
- New initial parameters `client secret` for `Confidential Clients`.
11+
12+
## [0.7.5](https://github.com/sns-sdks/python-twitter/v0.7.5) (2021-02-17)
613

714
### Features
815

docs/docs/authorization_oauth2.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,15 @@ from pytwitter import Api
1919
api = Api(client_id='your client id', oauth_flow=True)
2020
```
2121

22+
!!! tip "Tips"
23+
24+
If your app is belong to `Confidential clients`. You need also provide `Client Secret`.
25+
26+
```python
27+
from pytwitter import Api
28+
api = Api(client_id='your client id', client_secret="your client secret", oauth_flow=True)
29+
```
30+
2231
By default, The callback uri is `https://localhost/`, You need add this url to App's `Authentication settings`.
2332

2433
### Get authorization url

0 commit comments

Comments
 (0)