我已经在python中创建了一个程序,在其中我从“ wind”网站上抓取了一个值。一切正常,但是我想尝试在Swift中构建相同的应用程序,但是当我尝试运行该程序时,出现以下错误:“未经授权的API访问!”
但是用python抓取效果很好...也许是因为python使用json吗?有人可以帮助我在我的Swift代码中找到错误吗?
这是我的python工作代码:
import requests
headers = {'Referer' : 'https://www.windguru.cz/station/219'}
r = requests.get('https://www.windguru.cz/int/iapi.php? q=station_data_current&id_station=219&date_format=Y-m- d%20H%3Ai%3As%20T&_mha=f4d18b6c', headers = headers).json()
print(r)
print(r['wind_max'])
输出是风。
这是我的快捷代码:
import UIKit
import SwiftSoup
class ViewController: UIViewController {
@IBOutlet weak var label: UILabel!
override func viewDidLoad() {
super.viewDidLoad()
let myURLString = "https://www.windguru.cz/int/iapi.php? q=station_data_current&id_station=219&date_format=Y-m- d%20H%3Ai%3As%20T&_mha=f4d18b6c"
guard let myURL = URL(string: myURLString) else { return }
do {
let myHTMLString = try String(contentsOf: myURL, encoding: .utf8)
let htmlcontent = myHTMLString
print(myHTMLString)
do {
let doc = try SwiftSoup.parse(htmlcontent)
do {
let element = try doc.select("title").first()
}
}
}catch let error {
print("error: \(error)")
}
}
这会显示API访问错误。
答案 0 :(得分:0)
对于想知道答案的人:
override func viewDidLoad() {
super.viewDidLoad()
let headers: HTTPHeaders = [
"Referer" : "https://www.windguru.cz/station/219"
]
Alamofire.request("https://www.windguru.cz/int/iapi.php?q=station_data_current&id_station=219&date_format=Y-m-d%20H%3Ai%3As%20T&_mha=f4d18b6c", headers: headers).responseJSON { response in
debugPrint(response)
}