sdk-for-react-native icon indicating copy to clipboard operation
sdk-for-react-native copied to clipboard

📚 Documentation: need to import relevant class to create user without an error

Open RuwanPradeep0 opened this issue 1 year ago • 1 comments

💭 Description

import { Client, Account } from 'react-native-appwrite';
// Init your React Native SDK
const client = new Client();

client
    .setEndpoint('http://localhost/v1') // Your Appwrite Endpoint
    .setProject('455x34dfkj')
    .setPlatform('com.example.myappwriteapp') // YOUR application ID
;

const account = new Account(client);

// Register User
account.create(ID.unique(), '[email protected]', 'password', 'Jane Doe')
    .then(function (response) {
        console.log(response);
    }, function (error) {
        console.log(error);
    });   

in here instant of using

import { Client, Account } from 'react-native-appwrite'; 

need to use

import { Client, Account ,ID } from 'react-native-appwrite';

if not ID.unique() will not be work properly

👀 Have you spent some time to check if this issue has been raised before?

  • [X] I checked and didn't find similar issue

🏢 Have you read the Code of Conduct?

RuwanPradeep0 avatar May 17 '24 17:05 RuwanPradeep0

I'm guessing you ment this blog post? https://appwrite.io/blog/post/introducing-appwrite-react-native-sdk

This seems to be fixed. I could not find any other references.

docimin avatar Sep 28 '24 18:09 docimin