Type Alias
NSHTTPCookieStringPolicy
Values that indicate whether to restrict the cookie to requests sent back to the same site that created it.
いくつかの値、それらはクッキーをそれが作成されたのと同じサイトに送り返されるリクエストに制限するかどうかを指し示します。
Declaration
宣言
typedef NSString
*NSHTTPCookieStringPolicy;
Discussion
議論
RFC 6265 defines “same site” as the registerable domain of a URI.
RFC 6265は、 “同じサイト” をあるURIの登録可能ドメインとして定義します。
Topics
話題
Policies
ポリシー
NSHTTPCookieSameSiteStrict
A policy that prohibits a cross-site request from including the cookie.
ある方針、それはクロスサイトリクエストにクッキーを含めることを禁止します。
NSHTTPCookieSameSiteLax
A policy that allows certain cross-site requests to include the cookie.
ある方針、それは特定のクロスサイトリクエストにクッキーを含めることを許可します。
See Also
参照
Securing Cookies
クッキーを安全にする
HTTPOnly
A Boolean value that indicates whether the cookie should only be sent to HTTP servers.
クッキーがHTTPサーバにのみ送られるべきかどうかを指し示すブール値。
secure
A Boolean value that indicates whether the cookie may only be sent over secure channels.
あるブール値、それはクッキーが安全な経路越しに送られるだけであるかもしれないかどうかを指し示します。
sameSitePolicy
A Boolean value that indicates whether to restrict the cookie to requests sent back to the same site that created it.
あるブール値、それはクッキーをそれが作成されたのと同じサイトに逆に送り返されるリクエストに制限するかどうかを指し示します。