-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add sign in method using twitter #11
Conversation
Caution Review failedThe pull request is closed. Walkthroughこのプルリクエストでは、Firebase認証クライアントコードにTwitter用の新しい認証メソッドが追加されました。具体的には、 Changes
Sequence Diagram(s)sequenceDiagram
participant User
participant App
participant Firebase
User->>App: サインインリクエスト (Twitter)
App->>Firebase: signInWithTwitter()
Firebase->>Firebase: TwitterAuthProviderを使用して認証
Firebase-->>App: 認証結果
App-->>User: サインイン成功/失敗メッセージ
Poem
Note 🎁 Summarized by CodeRabbit FreeYour organization has reached its limit of developer seats under the Pro Plan. For new users, CodeRabbit will generate a high-level summary and a walkthrough for each pull request. For a comprehensive line-by-line review, please add seats to your subscription by visiting https://app.coderabbit.ai/login. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
src/lib/firebase-auth/client.ts
Outdated
@@ -46,6 +47,11 @@ export async function signInWithGoogle() { | |||
await signInWithProvider(provider); | |||
} | |||
|
|||
export async function signInWithTwitter() { | |||
const provider = new GoogleAuthProvider(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@groovyjovy Googleになっちゃってます!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
大変失礼いたしました...
取り急ぎ修正しました
Deploying sveltekit-firebaseauth-ssr-stripe-demo with Cloudflare Pages
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm!
@groovyjovy 適切なタイミングでマージしちゃってください。 |
@ciscorn |
デモで適当に使っている Firebase の |
Close #0
What I did(変更内容)
Notes(連絡事項)
None / なし
Summary by CodeRabbit