如何使用 Kitura 服务器连接和授权 google auth iOS 客户端?

How to connect & authorise google auth iOS client with Kitura Server?

假设有一个获取路由 localhost:8080/api/v1/movies 应该被登录的用户访问,我该如何实现?

我相信一旦您的客户端完成登录,您将拥有一个 GIDGoogleUser,它提供对您可以提供给服务器的 ID 令牌 (JWT) 的访问。然后您的服务器可以验证令牌(它是由 Google 颁发的)并提取用户的身份。

参见:https://developers.google.com/identity/sign-in/ios/backend-auth

您可以使用 Kitura-CredentialsJWT middleware to decode the token. Note that as of writing, the plugin only supports Codable routes, but there is an open pull request 添加对 'raw' 路由的支持(使用 Kitura-Credentials 插件机制)。

更新:Kitura-CredentialsJWT 支持现已在标签 1.0.0 中发布。