前提・実現したいこと
SwiftUI
で、API
接続でデータを取得し利用するアプリを開発しています。
SwiftUIで開発中のアプリから、API接続でGETの方法でデータを取得する際に、検索条件のパラメーターが&
や=
を含むURLになる場合、データを取得することができません。
発生している問題
例えば、
http://sample.com/api/book/
というベースのエンドポイントがあり、?url=
というように、URLの文字列を検索の条件とする場合:
- ①:以下のようにパラメーターを設定すると値が取得できますが、
http://sample.com/api/book/?url=`https://nicebook.com/detail/id/106639`
- ②:以下の場合は取得できません
http://sample.com/api/book/?url=`https://nicebook.com/detail/?id=106639&category=history`
②の場合、パラメーターとして設定している文字列に?
,=
の記号が含まれ、こちらも検索の条件とされてしまい、期待している動きにならないと思うのですが、このような場合どのような対策方法があるでしょうか?
該当のソースコード
Swift
1func fetchApiData() { 2 3 let url_1 = "https://nicebook.com/detail/id/106639" 4 let url_2 = "https://nicebook.com/detail/?id=106639&category=history" 5 6 var endpoint = "http://sample.com/api/book/?url=" + url_1 // OK 7 // var endpoint = "http://sample.com/api/book/?url=" + url_2 NG 8 9 var encodeEndpoint = endpoint.addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed) ?? "" 10 11 // Set up the URL request 12 guard let url = URL(string: encodeEndpoint) else { 13 print("Error: cannot create URL") 14 return 15 } 16 let urlRequest = URLRequest(url: URL) 17 18 // set up the session 19 let config = URLSessionConfiguration.default 20 let session = URLSession(configuration: config) 21 22 // make the request 23 let task = session.dataTask(with: urlRequest) { 24 (data, response, error) in 25 26 // check for any errors 27 guard error == nil else { 28 print("error calling GET") 29 return 30 } 31 // make sure we got data 32 guard let responseData = data else { 33 print("Error: did not receive data") 34 return 35 } 36 37 // parse the result as JSON, since that's what the API provides 38 DispatchQueue.main.async { 39 do{ self.bookInfos = try JSONDecoder().decode([BookInfo].self, from: responseData) 40 print(self.bookInfos as Any) // url_2で行うと値が取れない(コンソール -> []) 41 }catch{ 42 print("Error: did not decode") 43 return 44 } 45 } 46 } 47 task.resume() 48}
試したこと
こちら、Swift で日本語を含む URL を扱うの記事を参考に、パラメーターとなるURLのエンコードを別にエンコードする方法も試しましたが、うまく取得できません。
Swift
1let url_2 = "https://nicebook.com/detail/?id=106639&category=history" 2url_2.addEndpoint.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed)! 3var endpoint = "http://sample.com/api/book/?url=" + url_2 4 5var encodeEndpoint = endpoint.addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed) ?? "" 6
補足情報
Swift 5.0
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/08/05 03:59