web-dev-qa-db-ja.com

フラッターでセッションユーザーを使用する方法は?

Dartを使用して、ユーザーをログインさせ、httpに登録しようとしています。どういうわけか、セッションまたはCookieを使用してユーザーをアプリにとどまらせたいです。誰かがまだそれを試していますか?

3
dopefaceee

チェックアウト リクエスト

  • 現在のところ、機密データ(セッションIDなど)を保存するためのベストプラクティス(セキュリティ面)ではない shared_preferences を使用しています 問題#1

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); 
1
Jossef Harush