mirror of
https://github.com/appwrite/appwrite
synced 2026-05-24 09:28:40 +00:00
15 lines
234 B
Markdown
15 lines
234 B
Markdown
|
|
<?php
|
||
|
|
|
||
|
|
use Appwrite\Client;
|
||
|
|
use Appwrite\Services\Auth;
|
||
|
|
|
||
|
|
$client = new Client();
|
||
|
|
|
||
|
|
$client
|
||
|
|
setProject('')
|
||
|
|
setKey('')
|
||
|
|
;
|
||
|
|
|
||
|
|
$auth = new Auth($client);
|
||
|
|
|
||
|
|
$result = $auth->recoveryReset('[USER_ID]', '[TOKEN]', 'password', 'password');
|