We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2256d6d commit 2a60854Copy full SHA for 2a60854
README.md
@@ -90,6 +90,14 @@ activity = {
90
}
91
user_feed_1.add_activity(activity)
92
93
+# Retrieve an activity by its ID
94
+client.get_activities(ids=[activity_id])
95
+
96
+# Retrieve an activity by the combination of foreign_id and time
97
+client.get_activities(foreign_id_time=[
98
+ (foreign_id, activity_time),
99
+])
100
101
# Generating tokens for client side usage (JS client)
102
token = user_feed_1.token
103
# Javascript client side feed initialization
0 commit comments