Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

[READ-ONLY] Official Appwrite Dart SDK 💙

License

NotificationsYou must be signed in to change notification settings

appwrite/sdk-for-dart

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

pub packageLicenseVersionBuild StatusTwitter AccountDiscord

This SDK is compatible with Appwrite server version 1.7.x. For older versions, please checkprevious releases.

This is the Dart SDK for integrating with Appwrite from your Dart server-side code. If you're looking for the Flutter SDK you should checkappwrite/sdk-for-flutter

Appwrite is an open-source backend as a service server that abstract and simplify complex and repetitive development tasks behind a very simple to use REST API. Appwrite aims to help you develop your apps faster and in a more secure way. Use the Dart SDK to integrate your app with the Appwrite server to easily start interacting with all of Appwrite backend APIs and tools. For full API documentation and tutorials go tohttps://appwrite.io/docs

Appwrite

Installation

Add this to your package'spubspec.yaml file:

dependencies:dart_appwrite:^16.1.0

You can install packages from the command line:

dart pub add dart_appwrite

Getting Started

Initialize & Make API Request

Once you add the dependencies, its extremely easy to get started with the SDK; All you need to do is import the package in your code, set your Appwrite credentials, and start making API calls. Below is a simple example:

import'package:dart_appwrite/dart_appwrite.dart';voidmain()async {Client client=Client()    .setEndpoint('http://[HOSTNAME_OR_IP]/v1')// Make sure your endpoint is accessible    .setProject('5ff3379a01d25')// Your project ID    .setKey('cd868c7af8bdc893b4...93b7535db89')    .setSelfSigned();// Use only on dev mode with a self-signed SSL certUsers users=Users(client);try {final user=await users.create(userId:ID.unique(), email:"email@example.com", phone:"+123456789", password:"password", name:"Walter O'Brien");print(user.toMap());  }onAppwriteExceptioncatch(e) {print(e.message);  }}

Error handling

The Appwrite Dart SDK raisesAppwriteException object withmessage,code andresponse properties. You can handle any errors by catchingAppwriteException and present themessage to the user or handle it yourself based on the provided error information. Below is an example.

Users users=Users(client);try {final user=await users.create(userId:ID.unique(), email:"email@example.com", phone:"+123456789", password:"password", name:"Walter O'Brien");print(user.toMap());}onAppwriteExceptioncatch(e) {//show message to user or do other operation based on error as requiredprint(e.message);}

Learn more

You can use the following resources to learn more and get help

Contribution

This library is auto-generated by Appwrite customSDK Generator. To learn more about how you can help us improve this SDK, please check thecontribution guide before sending a pull-request.

License

Please see theBSD-3-Clause license file for more information.

About

[READ-ONLY] Official Appwrite Dart SDK 💙

Topics

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Contributors11

Languages


[8]ページ先頭

©2009-2025 Movatter.jp