gpt4 book ai didi

android - 在 Flutter 中处理 Cookie

转载 作者:IT王子 更新时间:2023-10-29 06:45:53 27 4
gpt4 key购买 nike

我想制作一个新的 flutter 应用程序,我正在使用 Facebook 登录 SDK(用于 flutter)。登录已成功实现,我能够获得连接用户的访问 token 和 UID。

我的问题是,当用户登录时,我想保留这些 cookie 以将其用于 HTTP 请求。我能够使用原生 android(使用 cookiejarOKHTTP 库)。我想知道 Flutter 是否仍然可行。

最佳答案

查看 requests ,一个 flutter 库来帮助处理现代 RESTful http 请求(基本的 cookie 支持和 json)

pubspec.yaml

dependencies:
requests: ^1.0.0

用法:

import 'package:requests/requests.dart';

// ...

// this will persist cookies
await Requests.post("https://example.com/api/v1/login", body: {"username":"...", "password":"..."} );

// this will re-use the persisted cookies
dynamic data = await Requests.get("https://example.com/api/v1/stuff", json: true);

关于android - 在 Flutter 中处理 Cookie,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53101858/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com