質問編集履歴
4
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -160,7 +160,7 @@
|
|
160
160
|
|
161
161
|
![イメージ説明](17a914a8b4e3be96f1ef6a87271c3e3a.jpeg)
|
162
162
|
|
163
|
-
上記のようにwebには飛ばされるものの、以下のようなエラーが出てしまいます。
|
163
|
+
上記のようにwebには飛ばされるものの、すぐに前の画面に戻ってしまい以下のようなエラーが出てしまいます。
|
164
164
|
|
165
165
|
|
166
166
|
|
3
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -180,11 +180,49 @@
|
|
180
180
|
|
181
181
|
|
182
182
|
|
183
|
+
やったこと
|
184
|
+
|
185
|
+
・twitterログインを参考にした記事に記載されていたエラー対処(SceneDelegateへの追記)
|
186
|
+
|
187
|
+
|
188
|
+
|
189
|
+
```ここに言語を入力
|
190
|
+
|
191
|
+
func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) {
|
192
|
+
|
193
|
+
// Use this method to optionally configure and attach the UIWindow `window` to the provided UIWindowScene `scene`.
|
194
|
+
|
195
|
+
// If using a storyboard, the `window` property will automatically be initialized and attached to the scene.
|
196
|
+
|
197
|
+
// This delegate does not imply the connecting scene or session are new (see `application:configurationForConnectingSceneSession` instead).
|
198
|
+
|
199
|
+
}
|
200
|
+
|
201
|
+
|
202
|
+
|
203
|
+
|
204
|
+
|
205
|
+
func scene(_ scene: UIScene, openURLContexts URLContexts: Set<UIOpenURLContext>) {
|
206
|
+
|
207
|
+
for urlContext in URLContexts {
|
208
|
+
|
209
|
+
let url = urlContext.url
|
210
|
+
|
211
|
+
Auth.auth().canHandle(url)
|
212
|
+
|
213
|
+
}
|
214
|
+
|
215
|
+
}
|
216
|
+
|
217
|
+
```
|
218
|
+
|
219
|
+
|
220
|
+
|
183
|
-
|
221
|
+
・Twitter Appの作り直し
|
184
|
-
|
185
|
-
|
222
|
+
|
186
|
-
|
223
|
+
|
224
|
+
|
187
|
-
|
225
|
+
いずれの対処後も同じエラー文が出てしまいました。
|
188
226
|
|
189
227
|
|
190
228
|
|
2
誤字
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
TwitterログインでFir
|
1
|
+
TwitterログインでFirebaseエラーが出る
|
test
CHANGED
File without changes
|
1
変更
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
TwitterログインでFirabaseエラーが出る
|
test
CHANGED
File without changes
|