Compare commits

...

3 Commits

Author SHA1 Message Date
Jonathan Haines f3b8d6a74b
Merge eb62c877b4 into f349fba499 2025-04-03 23:38:08 +09:00
github-actions[bot] f349fba499
Version Packages (#1101)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-04-03 23:23:22 +09:00
liquidleif 091b182a6a
fix(oauth-providers): Update twitter authorization url (#1099)
Closes #1100

* Update twitter authorization url

The twitter authorization URL is outdated.

* add a changeset
2025-04-03 23:18:24 +09:00
3 changed files with 8 additions and 2 deletions

View File

@ -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

View File

@ -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",

View File

@ -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() {