1
0
Fork 0
mirror of synced 2024-09-19 19:07:21 +12:00
appwrite/app/sdks/client-swift/docs/examples/storage/get-file-preview.md

15 lines
354 B
Markdown
Raw Normal View History

2020-08-31 04:23:15 +12:00
/// Swift Appwrite SDK
/// Produced by Appwrite SDK Generator
///
var client: Client = Client()
client
.setEndpoint(endpoint: "https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
.setProject(value: "5df5acd0d48c2") // Your project ID
var storage: Storage = Storage(client: client);
var result = storage.getFilePreview(_fileId: "[FILE_ID]");