1
0
Fork 0
mirror of synced 2024-09-13 08:03:33 +12:00
appwrite/app/sdks/php/docs/examples/projects/list-keys.md

15 lines
217 B
Markdown
Raw Normal View History

2019-08-06 17:03:18 +12:00
<?php
use Appwrite\Client;
use Appwrite\Services\Projects;
$client = new Client();
$client
2019-10-02 07:10:33 +13:00
->setProject('')
->setKey('')
2019-08-06 17:03:18 +12:00
;
$projects = new Projects($client);
$result = $projects->listKeys('[PROJECT_ID]');