You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 29, 2023. It is now read-only.
.setEndpoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
70
70
.setProject("5df5acd0d48c2") // Your project ID
71
-
.setKey("919c2d18fb5d4...a2ae413da83346ad2") // Your secret API key
72
-
.setSelfSigned(true) // For self signed certificates only use for development</code></pre>
71
+
.setSelfSigned(true) // For self signed certificates, only use for development</code></pre>
73
72
</div>
74
73
75
74
<p>Before starting to send any API calls to your new Appwrite instance, make sure your Android emulators has network access to the Appwrite server hostname or IP address.</p>
@@ -87,6 +86,23 @@ val response = account.create("[email protected]", "password")
87
86
val json = response.body?.string()</code></pre>
88
87
</div>
89
88
89
+
<h2><a href="/docs/getting-started-for-android#listenToChanges" id="listenToChanges">Listen to changes</a></h2>
90
+
91
+
<p>If you want to listen to changes in realtime from Appwrite, you can subscribe to a variety of channels and receive updates within milliseconds. Full documentation for Realtime can be found <a href="/docs/realtime">here</a>.</p>
Copy file name to clipboardExpand all lines: app/views/docs/getting-started-for-flutter.phtml
+31-2Lines changed: 31 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -116,7 +116,7 @@ Client client = Client();
116
116
client
117
117
.setEndpoint('https://localhost/v1') // Your Appwrite Endpoint
118
118
.setProject('5e8cf4f46b5e8') // Your project ID
119
-
.setSelfSigned() // Remove in production
119
+
.setSelfSigned(true) // For self signed certificates, only use for development
120
120
;
121
121
</code></pre>
122
122
</div>
@@ -142,6 +142,24 @@ Response user = await account
142
142
</code></pre>
143
143
</div>
144
144
145
+
<h2><a href="/docs/getting-started-for-flutter#listenToChanges" id="listenToChanges">Listen to changes</a></h2>
146
+
147
+
<p>If you want to listen to changes in realtime from Appwrite, you can subscribe to a variety of channels and receive updates within milliseconds. Full documentation for Realtime can be found <a href="/docs/realtime">here</a>.</p>
<h2><a href="/docs/getting-started-for-web#listenToChanges" id="listenToChanges">Listen to changes</a></h2>
97
+
98
+
<p>If you want to listen to changes in realtime from Appwrite, you can subscribe to a variety of channels and receive updates within milliseconds. Full documentation for Realtime can be found <a href="/docs/realtime">here</a>.</p>
Copy file name to clipboardExpand all lines: app/views/docs/permissions.phtml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -102,7 +102,7 @@
102
102
<p>In the following example, we are creating a document that can be read by everyone and only be edited, or deleted by a user with a UID <span class="tag">user:5c1f88b42259e</span>.</p>
<p>In the following example, we are creating a document that can be read-only by members of <span class="tag">team:5c1f88b87435e</span> and can only be edited, or deleted by members of the same team that possesses the role <span class="tag">owner</span>.</p>
0 commit comments