Dartを使用して、ユーザーをログインさせ、httpに登録しようとしています。どういうわけか、セッションまたはCookieを使用してユーザーをアプリにとどまらせたいです。誰かがまだそれを試していますか?
チェックアウト リクエスト
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);