- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在能够从业务匹配端点检索业务 ID 后,我现在尝试使用该业务 ID 将其汇集到业务详细信息端点。我只是在学习如何调用 API,所以请多多包涵。谢谢!
以下代码使我能够进行业务匹配:
调用API -->
import Foundation
import Moya
private let apiKey = ""
enum YelpService {
enum BusinessMatch: TargetType {
case match(name: String, address1: String, city: String, state: String, country: String)
public var baseURL: URL { return NSURL(string: "https://api.yelp.com")! as URL
}
public var path: String {
switch self {
case .match:
return "/v3/businesses/matches"
}
}
var method: Moya.Method {
return.get
}
var sampleData: Data {
return Data()
}
var task: Task {
switch self {
case let .match(name, address1, city, state, country):
return .requestParameters(parameters: ["name": name, "address1": address1, "city": city, "state": state, "country": country, "limit": 1], encoding: URLEncoding.queryString)
}
}
var headers: [String : String]? {
return ["Authorization": "Bearer \(apiKey)"]
}
}
}
返回业务匹配端点 -->
import UIKit
import CoreData
import Moya
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
let service = MoyaProvider<YelpService.BusinessMatch>()
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions:[UIApplication.LaunchOptionsKey: Any]?) -> Bool {
service.request(.match(name: "Sushi Damo", address1:
"330 W 58th St", city: "New York", state: "NY", country: "US")) { (result) in
switch result {
case .success(let response):
print(try? JSONSerialization.jsonObject(with: response.data, options: []))
case .failure(let error):
print("Error: \(error)")
}
}
return true
}
func application(_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions) -> UISceneConfiguration {
// Called when a new scene session is being created.
// Use this method to select a configuration to create the new scene with.
return UISceneConfiguration(name: "Default Configuration", sessionRole: connectingSceneSession.role)
}
func application(_ application: UIApplication, didDiscardSceneSessions sceneSessions: Set<UISceneSession>) {
// Called when the user discards a scene session.
// If any sessions were discarded while the application was not running, this will be called shortly after application:didFinishLaunchingWithOptions.
// Use this method to release any resources that were specific to the discarded scenes, as they will not return.
}
// MARK: - Core Data stack
lazy var persistentContainer: NSPersistentContainer = {
/*
The persistent container for the application. This implementation
creates and returns a container, having loaded the store for the
application to it. This property is optional since there are legitimate
error conditions that could cause the creation of the store to fail.
*/
let container = NSPersistentContainer(name: "APITest")
container.loadPersistentStores(completionHandler: { (storeDescription, error) in
if let error = error as NSError? {
// Replace this implementation with code to handle the error appropriately.
// fatalError() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development.
/*
Typical reasons for an error here include:
* The parent directory does not exist, cannot be created, or disallows writing.
* The persistent store is not accessible, due to permissions or data protection when the device is locked.
* The device is out of space.
* The store could not be migrated to the current model version.
Check the error message to determine what the actual problem was.
*/
fatalError("Unresolved error \(error), \(error.userInfo)")
}
})
return container
}()
// MARK: - Core Data Saving support
func saveContext () {
let context = persistentContainer.viewContext
if context.hasChanges {
do {
try context.save()
} catch {
// Replace this implementation with code to handle the error appropriately.
// fatalError() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development.
let nserror = error as NSError
fatalError("Unresolved error \(nserror), \(nserror.userInfo)")
}
}
}
}
调用Business Match Endpoint后,我收到了以下信息:
Optional({
businesses = (
{
alias = "sushi-damo-new-york";
coordinates = {
latitude = "40.76778";
longitude = "-73.98358";
};
"display_phone" = "(212) 707-8609";
id = J85NKgA4tOgBAoqxu0vBNw;
location = {
address1 = "330 W 58th St";
address2 = "";
address3 = "";
city = "New York";
country = US;
"display_address" = (
"330 W 58th St",
"New York, NY 10019"
);
state = NY;
"zip_code" = 10019;
};
name = "Sushi Damo";
phone = "+12127078609";
}
);
})
我希望能够从任何业务匹配结果中自动提取该业务 ID。问题出在下面的代码中。
调用API -->
enum YelpDetails {
enum BusinessDetail: TargetType {
case BusinessID(id: String)
public var baseURL: URL { return NSURL(string: "https://api.yelp.com")! as URL
}
public var path: String {
switch self {
case .BusinessID:
return "https://api.yelp.com/v3/businesses/{id}"
}
}
var method: Moya.Method {
return.get
}
var sampleData: Data {
return Data()
}
var task: Task {
switch self {
case let .BusinessID(id):
return .requestParameters(parameters: ["BusinessID": id], encoding: URLEncoding.queryString)
}
}
var headers: [String : String]? {
return ["Authorization": "Bearer \(apiKey)"]
}
}
}
从 Business Details 端点返回结果 -->
let information = MoyaProvider<YelpDetails.BusinessDetail>()
func call(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions:[UIApplication.LaunchOptionsKey: Any]?) -> Bool {
information.request(.BusinessID(id: "J85NKgA4tOgBAoqxu0vBNw")) {
(result) in
switch result {
case .success(let response):
print(try? JSONSerialization.jsonObject(with:
response.data, options: []))
case .failure(let error):
print("Error: \(error)")
}
}
return true
}
最佳答案
通常,当您从网络获取 JSON 数据时,您需要做的是将其序列化为您可以在 Swift 中使用的对象。幸运的是,Swift 有工具可以轻松地将 json 转换为对象,然后再转换回对象,即 Codable
协议(protocol)。查看this video了解更多信息。但本质上,这需要查看我们从服务器获得的响应,并创建一个反射(reflect)该响应的 struct
或 class
。所以在你的情况下,从服务器返回的原始 json 看起来像:
{
"businesses": [
{
"id": "J85NKgA4tOgBAoqxu0vBNw",
"alias": "sushi-damo-new-york",
"name": "Sushi Damo",
"coordinates": {
"latitude": 40.76778,
"longitude": -73.98358
},
"location": {
"address1": "330 W 58th St",
"address2": "",
"address3": "",
"city": "New York",
"zip_code": "10019",
"country": "US",
"state": "NY",
"display_address": [
"330 W 58th St",
"New York, NY 10019"
]
},
"phone": "+12127078609",
"display_phone": "(212) 707-8609"
}
]
}
这是一个带有一个键 businesses
的字典,它的值是一个字典数组,键值对描述一个企业。对于上面的 JSON,数组中只有一个元素。
现在我们已经了解了响应的内容,我们可以开始创建一些符合 Codable
的结构。我们知道我们需要一个顶级 struct
,它具有属性 businesses
,这是一个包含描述每个业务的结构的数组。
struct BusinessesResponse: Codable {
let businesses: [BusinessResponse]
}
接下来创建 BusinessResponse
。现在,如果您只关心 id
,您可以将 BusinessResponse
设为:
struct BusinessResponse: Codable {
let id: String
}
然后在此处更新您的回复方式:
service.request(.match(name: "Sushi Damo", address1:
"330 W 58th St", city: "New York", state: "NY", country: "US")) { (result) in
switch result {
case .success(let response):
print(try? JSONSerialization.jsonObject(with: response.data, options: []))
case .failure(let error):
print("Error: \(error)")
}
}
我们不想序列化一个 JSON 对象,而是将其解码为我们的 BusinessResponse
结构,我们可以通过将 switch
语句更新为:
switch result {
case .success(let response):
let businessesResponse = try? JSONDecoder().decode(BusinessesResponse.self, from: response.data)
let firstID = businessesResponse?.businesses.first?.id
// Do something with ID
case .failure(let error):
print("Error: \(error)")
}
我认为下一个请求不会像写的那样工作。在此请求中,参数(业务 ID)通过 URL 路径发送。所以,path
应该是:
public var path: String {
switch self {
case let .BusinessID(id):
return "v3/businesses/\(id)"
}
}
所以 task
不再需要处理参数,应该是:
var task: Task {
switch self {
case .BusinessID:
return .requestParameters(parameters:[:], encoding: URLEncoding.queryString)
}
}
关于ios - Yelp API 业务详情端点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59230755/
在 spring boot 2 应用程序中,我正在尝试访问执行器端点/beans,就像我之前在 Spring boot 1.5.* 应用程序中所做的那样。但我做不到。此外,我没有在 log.INFO
我正在为资源 items 编写端点,它是 applications 的子资源,如下所示:applications/{:id}/items。项目和应用程序都具有除名称之外的其他属性。 我创造了 GET
我正在创建一个 API,其中基于经过身份验证的用户可以更改对象的不同属性的权限。 解决这个问题的常用方法是什么? 我应该有这样的端点吗 /admin/users 和 /users 具有不同的 API
也许(希望如此)我错过了一些非常简单的东西,但我似乎无法弄清楚。 我有一组我想放在 nghttpx 代理后面的 gRPC 服务。为此,我需要能够使用非根 url 上的 channel 配置我的客户端。
我没有找到法定存款的历史记录(来自银行卡), 这里只有加密存款:https://prnt.sc/ttdwc2= ) 例如,在我的银行帐户界面中,我在 5 月 12 日找到了存款,但在这里找不到...
我很好奇普罗米修斯的工作原理。使用 Prometheus 界面,我可以看到一个下拉列表,我认为其中包含所有可用的指标。但是,我无法访问列出所有抓取的指标的指标端点。 http://targethost
是否可以从 apollo-server-express 上的 GraphQL 端点触发浏览器中的文件下载?应用? 我有一个用标准 express 写的端点 app.get函数(见下文),但我想利用 G
有谁知道在一个请求中获取您上传到媒体库的所有图像的端点吗?我将 next js 与 Strapi 一起使用,需要一种方法来从媒体库中获取所有图像,但似乎没有任何相关文档 最佳答案 /api/上传 GE
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 6 年前。 Improve this qu
我编写了一个简单的 HTTP 监听器并将其部署在 Heroku 应用程序中。我确保在 $PORT 中绑定(bind)端口。 现在,我尝试使用 url name-of-my-app.herokuapp.
我正在尝试构建一个安全系统,用于将数据从客户端 Android 应用程序传输到运行 PHP 的网络服务器。 我想做的是确保系统是加密安全的,这样来自应用程序的消息可以被验证为实际上来自应用程序本身,而
我是 Go 编程语言的新手。尝试使用 gousb访问爱普生收据打印机。 因此,我从存储库中获取了一些示例代码,并对其进行了一些调整,以验证我是否可以访问打印机。 我可以看到打印机并枚举端点。我收到此输
我正在使用 azure API 端点。 ....azure-api.net/...。当我尝试使用 Charles 代理查看 HTTP 请求/响应时,HTTP 响应为空。当我关闭代理时,该请求有效。 我
我正在关注这个tutorial了解用户成功登录后如何获取 token 。 到目前为止我已完成的步骤: 我已使用此 URL 注册了自己(用户名和密码):https://MyCompany.b2clogi
给定一个以 .svc 结尾且应该运行 SOAP 网络服务的 URL,我如何从中获取一些数据? 我试过: 通过网络浏览器访问它 通过 Python 的库 Zeep 访问它 通过 Microsoft 实用
我认为公共(public) REST API(例如注册端点)无法验证用户身份是否正确?例如,我们的端点应该只接受来 self 们的移动应用程序和 future 网络应用程序的请求。 我很确定这在逻辑上
在自托管服务中,我想使用 App.config 中指定的端点(如果存在),或者如果 App.config 为空则使用代码中指定的默认端点。我该怎么做? 编辑:澄清一下,这是在服务器(服务)端使用 Se
我需要在我的后端服务器中实现实时开发者通知,以了解我的用户所做的任何购买修改(暂停帐户、续订订阅等)。我的后端服务器是用 Delphi 制作的,没有现成的 Delphi 库,但是,我可以制作一个 HT
我创建了一个 Kubernetes 服务: [root@Infra-1 kubernetes]# kubectl describe service gitlab Name: git
我正在开发一个应用程序,我需要将对象列表传递给 REST 端点,该端点将进行一些计算并将结果返回给调用者。 问题更多是关于如何处理这种情况的哲学问题? 在 GET 请求中传递大量有效负载是一个坏主意。
我是一名优秀的程序员,十分优秀!