- Fixed so that the refresh token is always set to an empty string if the
offline.access
scope is not specified. (#63)
- Fixed a bug where
TwitterOAuthException
did not implementException
. (#50)
- Just release
v1.0.0
.
Version 1.0.0
introduced some breaking changes that need to be addressed if you are upgrading from previous versions.
Please take note of the following:
- From version 3.0.0,
flutter_web_auth
has been replaced byflutter_web_auth_2
. Please refer to the upgrade instructions. - The migration to
flutter_web_auth_2
marks the transition toFlutter 3
. This means that you must upgrade toFlutter 3
(a simpleflutter upgrade
should be enough).
- Added scopes for direct message. (#35)
directMessageRead
directMessageWrite
- Supported the process for Web Browser. (#28)
- Exposed
TwitterOAuthException
object. (#13)
- Changed the
refreshToken
field inOAuthResponse
to nullable. This is because a refresh token is not issued ifoffline.access
is not specified in the scope. (#10)
- Improved example.
- Processing has been optimized for Twitter.
- First Release!