Compare commits
3 Commits
ececbbfe62
...
f3b8d6a74b
Author | SHA1 | Date |
---|---|---|
|
f3b8d6a74b | |
|
f349fba499 | |
|
091b182a6a |
|
@ -1,5 +1,11 @@
|
|||
# @hono/oauth-providers
|
||||
|
||||
## 0.7.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#1099](https://github.com/honojs/middleware/pull/1099) [`091b182a6ac1b7bb1129123d3cd0acca5e41b80d`](https://github.com/honojs/middleware/commit/091b182a6ac1b7bb1129123d3cd0acca5e41b80d) Thanks [@liquidleif](https://github.com/liquidleif)! - fix: Update twitter authorization url
|
||||
|
||||
## 0.7.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@hono/oauth-providers",
|
||||
"version": "0.7.0",
|
||||
"version": "0.7.1",
|
||||
"description": "Social login for Hono JS, integrate authentication with facebook, github, google and linkedin to your projects.",
|
||||
"type": "module",
|
||||
"main": "dist/index.js",
|
||||
|
|
|
@ -74,7 +74,7 @@ export class AuthFlow {
|
|||
code_challenge: this.code_challenge,
|
||||
code_challenge_method: 'S256',
|
||||
})
|
||||
return `https://twitter.com/i/oauth2/authorize?${parsedOptions}`
|
||||
return `https://x.com/i/oauth2/authorize?${parsedOptions}`
|
||||
}
|
||||
|
||||
private async getTokenFromCode() {
|
||||
|
|
Loading…
Reference in New Issue