前提・実現したいこと
Swifterを使用して、Twitterでのログイン機能を実装したい。
発生している問題・エラーメッセージ
下記エラーが発生しており、どのように対処すればいいかご教示頂けませんでしょうか。
Cannot convert value of type 'String' to expected argument type 'URL'
該当のソースコード
↓AppDelegate.swift
Swift
1import UIKit 2import Firebase 3import Swifter 4 5@UIApplicationMain 6class AppDelegate: UIResponder, UIApplicationDelegate { 7 8 var window: UIWindow? 9 10 func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { 11 FirebaseApp.configure() 12 return true 13 } 14 15 func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey : Any] = [:]) -> Bool { 16 return Swifter.handleOpenURL(url, callbackURL: "コールバックURLを記載") //← コールバックURLを入れるとエラーになる 17 }
試したこと
この記事通りに実装しています。
【iOS】TwitterKitじゃなくて「Swifter」でTwitterログインする
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/11/26 06:31