var activities = new[]
{
new Activity("User:1", "tweet", "Tweet:1"),
new Activity("User:2", "watch", "Movie:1")
};
await userFeed1.AddActivitiesAsync(activities);
Batch Methods
Batch Add Activities
Multiple activities can be added with a single batch operation. This is very convenient when importing data to Stream.
const activities = [
{'actor': 'User:1', 'verb': 'tweet', 'object': 'Tweet:1'},
{'actor': 'User:2', 'verb': 'watch', 'object': 'Movie:1'}
];
const addActivities = await user1.addActivities(activities);
activities = [
{:actor => 'User:1', :verb => 'tweet', :object => 'Tweet:1'},
{:actor => 'User:2', :verb => 'watch', :object => 'Movie:1'}
]
user_feed_1.add_activities(activities)
activities = [
{'actor': 'User:1', 'verb': 'tweet', 'object': 'Tweet:1'},
{'actor': 'User:2', 'verb': 'watch', 'object': 'Movie:1'}
]
user_feed_1.add_activities(activities)
Activity[] activities = new Activity[]{
Activity.builder()
.actor("User:1")
.verb("tweet")
.object("Tweet:1")
.build(),
Activity.builder()
.actor("User:2")
.verb("watch")
.object("Movie:1")
.build()
};
userFeed.addActivities(activities).join();
activities := []stream.Activity{
{Actor: "user:42", Verb: "tweet", Object: "Tweet:1"},
{Actor: "user:42", Verb: "watch", Object: "Movie:1"},
}
_, err := userFeed.AddActivities(context.TODO(), activities...)
if err != nil {
panic(err)
}
$activities = [
['actor' => 'User:1', 'verb' => 'tweet', 'object' => 'Tweet:1'],
['actor' => 'User:2', 'verb' => 'watch', 'object' => 'Movie:1'],
];
$userFeed1->addActivities($activities);
var activities = new Activity[]{
new Activity("User:1", "tweet", "Tweet:1"),
new Activity("User:2", "watch", "Movie:1")
};
await userFeed1.AddActivities(activities);
Parameters
name | type | description | default | optional |
---|---|---|---|---|
activities | list | The list of activities to be added (as specified in Adding Activities) | - | ✓ |
Activity IDs
The API will return a response with a list containing the activity ids.
If you are importing your data for the first time, we suggest you create the follow-relationships after the activity import.
Batch Activity Add
This method allows you to add a single activity to multiple feeds with one API request.
Batch Activity Add has a limit of 5000 target feeds. Requests that exceed this limit will return an error.
TO
field targeting is not permitted via this endpoint. Attempting to add activities with a ‘to’ property will result in an error response.
// adds 1 activity to many feeds in one request
var feeds = new[] { "timeline:1", "timeline:2", "timeline:3", "timeline:4" };
var activity = new Activity("User:2", "pin", "Place:42")
{
Target = "Board:1"
};
await client.Batch.AddToManyAsync(activity, feeds);
const feeds = ['timeline:1', 'timeline:2', 'timeline:3', 'timeline:4'];
const activity = { 'actor': 'User:2', 'verb': 'pin', 'object': 'Place:42', 'target': 'Board:1' };
const response = await client.addToMany(activity, feeds);
# adds 1 activity to many feeds in one request
feeds = ['timeline:1', 'timeline:2', 'timeline:3', 'timeline:4']
activity = {"actor": "User:2", "verb": "pin", "object": "Place:42", "target": "Board:1"}
client.add_to_many(activity, feeds)
# adds 1 activity to many feeds in one request
feeds = ['timeline:1', 'timeline:2', 'timeline:3', 'timeline:4']
activity = {:actor => "User:2", :verb => "pin", :object => "Place:42", :target => "Board:1"}
client.add_to_many(activity, feeds)
// adds 1 activity to many feeds in one request
$activity = [
'actor' => 'User:2',
'verb' => 'pin',
'object' => 'Place:42',
'target' => 'Board:1'
];
$feeds = ['timeline:1', 'timeline:2', 'timeline:3', 'timeline:4'];
$batcher->addToMany($activity, $feeds);
// adds 1 activity to many feeds in one request
activity = Activity.builder()
.actor("User:2")
.verb("pin")
.object("Place:42")
.target("Board:1")
.build();
FeedID[] feeds = new FeedID[]{
new FeedID("timeline", "1"),
new FeedID("timeline", "2"),
new FeedID("timeline", "3"),
new FeedID("timeline", "4")
};
client.batch().addToMany(activity, feeds).join();
// adds 1 activity to many feeds in one request
feeds := make([]stream.Feed, 0, 4)
for i := 0; i < 4; i++ {
f, err := client.FlatFeed("timeline", strconv.Itoa(i))
if err != nil {
panic(err)
}
feeds = append(feeds, f)
}
activity := stream.Activity{
Actor: "user:42",
Verb: "pin",
Object: "place:42",
Target: "board:1",
}
err := client.AddToMany(context.TODO(), activity, feeds...)
if err != nil {
panic(err)
}
Parameters
name | type | description |
---|---|---|
feeds | list | The list of a feeds e.g. [‘user:1’, ‘timeline:2’] |
activity | object | The activity object (see Feed endpoint for reference) |
Activities added using this method are not propagated to followers. That is, any other Feeds that follow the Feed(s) listed in the API call will not receive the new Activity.
Even if real-time is enabled, for this endpoint it is disabled by default since it’s mainly for backend processing which shouldn’t create noise for users. If you want to enable it, please send a request to support with your app id.
Batch get Activities by ID
Activities can be retrieved by IDs or foreign ID and time.
// retrieve two activities by ID
await client.Batch.GetActivitiesAsync(new[]
{
"01b3c1dd-e7ab-4649-b5b3-b4371d8f7045",
"ed2837a6-0a3b-4679-adc1-778a1704852d"
});
// retrieve two activities by foreign ID and timestamp
await client.Batch.GetActivitiesAsync(null, new[]
{
new ForeignIdTime("like:1", DateTime.Parse("2018-07-08T14:09:36.000000")),
new ForeignIdTime("post:1", DateTime.Parse("2018-07-09T20:30:40.000000"))
});
// retrieve two activities by ID
const response = await client.getActivities({
ids: [
'01b3c1dd-e7ab-4649-b5b3-b4371d8f7045',
'ed2837a6-0a3b-4679-adc1-778a1704852d'
]
});
// retrieve two activities by their foreign ID and time
const response = await client.getActivities({
foreignIDTimes: [
{ foreignID: 'like:1', time: '2018-07-08T14:09:36.000000' },
{ foreignID: 'post:2', time: '2018-07-09T20:30:40.000000' },
]
});
const response = await client.getActivities({
ids: ["1febf8dd-cbbb-11ec-9717-025b47ecba9d"],
reactions: { recent: true, counts: true, own: true, kind: true },
});
# retrieve two activities by ID
client.get_activities(ids=[
'01b3c1dd-e7ab-4649-b5b3-b4371d8f7045',
'ed2837a6-0a3b-4679-adc1-778a1704852d'
])
# retrieve an activity by foreign ID and time
client.get_activities(foreign_id_times=[
(foreign_id, activity_time),
])
# retrieve two activities by ID
client.get_activities(
ids: [
'01b3c1dd-e7ab-4649-b5b3-b4371d8f7045',
'ed2837a6-0a3b-4679-adc1-778a1704852d'
]
)
# retrieve two activities by foreign ID and timestamp
client.get_activities(
foreign_id_times: [
{ foreign_id: 'like:1', time: '2018-07-08T14:09:36.000000' },
{ foreign_id: 'post:2', time: '2018-07-09T20:30:40.000000' }
]
)
# not supported yet
$client->getActivities([
'01b3c1dd-e7ab-4649-b5b3-b4371d8f7045',
'ed2837a6-0a3b-4679-adc1-778a1704852d'
])
# retrieve an activity by foreign ID and time (an array of arrays)
$client->getActivities(null, [[$foreign_id, $activity_time]])
// retrieve two activities by ID
client.batch().getActivitiesByID("01b3c1dd-e7ab-4649-b5b3-b4371d8f7045", "ed2837a6-0a3b-4679-adc1-778a1704852").join();
// retrieve two activities by foreign ID and timestamp
client.batch().getActivitiesByForeignID(new ForeignIDTimePair("foreignID1", new Date()), new ForeignIDTimePair("foreignID2", new Date())).join();
// retrieve two activities by ID
resp, err := client.GetActivitiesByID(
context.TODO(),
"01b3c1dd-e7ab-4649-b5b3-b4371d8f7045",
"ed2837a6-0a3b-4679-adc1-778a1704852d",
)
if err != nil {
panic(err)
}
// retrieve two activities by foreign ID and timestamp
resp, err := client.GetActivitiesByForeignID(
context.TODO(),
stream.NewForeignIDTimePair("like:1", stream.Time{Time: /* ... */}),
stream.NewForeignIDTimePair("post:2", stream.Time{Time: /* ... */}),
)
if err != nil {
panic(err)
}
// retrieve two activities by ID:
client.get(typeOf: Activity.self, activityIds: ["01b3c1dd-e7ab-4649-b5b3-b4371d8f7045",
"ed2837a6-0a3b-4679-adc1-778a1704852d"]) { result in
/* ... */
}
// retrieve an activity by foreign ID and time
client.get(typeOf: Activity.self,
foreignIds: ["like:1", "post:2"],
times: ["2018-07-08T14:09:36.000000".streamDate!, "2018-07-09T20:30:40.000000".streamDate!]) { result in
/* ... */
}
const response = await client.getActivities({
ids: ["1febf8dd-cbbb-11ec-9717-025b47ecba9d"],
reactions: { recent: true, counts: true, own: true, kind: true },
user_id: "luis",
});
Combining ID and foreign ID + time parameters is not allowed.
Parameters
name | type | description | default | optional |
---|---|---|---|---|
ids | string | The comma-separated list of activity IDs to retrieve | - | ✓ |
foreign_id_times | list | The list of foreign_id and time values used to retrieve activities | - | ✓ |
reactions.own | boolean | Include reactions added by current user to all activities | - | ✓ |
reactions.recent | boolean | Include recent reactions to activities | - | ✓ |
reaction.counts | boolean | Include reaction counts to activities | - | ✓ |
The number of activities that can be retrieved with a single request is limited to 100.
Batch Follow
Stream’s Follow Many functionality gives you a fast method to follow many feeds in one go. This is convenient when importing data or on-boarding new users.
Follow Many has a limit of 2,500 follows per request.
Follow Many has a total request size limit of 128kb, in case you reach it we recommended to split the request in 2.
activity_copy_limit
can be specified to copy specific number of activities. By default, it’s 100 such that upon follow 100 activities from the followed feed will be seen in our feed.
// Batch following many feeds
// Let timeline:1 follow user:1, user:2 and user:3
var follows = new[]
{
new Follow("timeline:1", "user:1"),
new Follow("timeline:1", "user:2"),
new Follow("timeline:1", "user:3")
};
await client.Batch.FollowManyAsync(follows);
// copy only the last 10 activities from every feed
await client.Batch.FollowManyAsync(follows, 10);
// Batch following many feeds
// Let timeline:1 will follow user:1, user:2 and user:3
const follows = [
{'source': 'timeline:1', 'target': 'user:1'},
{'source': 'timeline:1', 'target': 'user:2'},
{'source': 'timeline:1', 'target': 'user:3', 'activity_copy_limit': 0}
];
await client.followMany(follows);
# Batch following many feeds
# Let timeline:1 will follow user:1, user:2 and user:3
follows = [
{'source': 'timeline:1', 'target': 'user:1'},
{'source': 'timeline:1', 'target': 'user:2'},
{'source': 'timeline:1', 'target': 'user:3'}
]
client.follow_many(follows)
# copy only the last 10 activities from every feed
client.follow_many(follows, activity_copy_limit=10)
# Batch following many feeds
# Let timeline:1 will follow user:1, user:2 and user:3
follows = [
{:source => 'timeline:1', :target => 'user:1'},
{:source => 'timeline:1', :target => 'user:2'},
{:source => 'timeline:1', :target => 'user:3'}
]
client.follow_many(follows)
// Batch following many feeds
// Let timeline:1 will follow user:1, user:2 and user:3
$follows = [
['source' => 'timeline:1', 'target' => 'user:1'],
['source' => 'timeline:1', 'target' => 'user:2'],
['source' => 'timeline:1', 'target' => 'user:3'],
];
$batcher->followMany($follows);
// Batch following many feeds
// Let timeline:1 will follow user:1, user:2 and user:3
FollowRelation[] follows = new FollowRelation[]{
new FollowRelation("timeline:1", "user:1"),
new FollowRelation("timeline:3", "user:2"),
new FollowRelation("timeline:1", "user:3")
};
client.batch().followMany(follows).join();
// copy only the last 10 activities from every feed
client.batch().followMany(10, follows).join();
// Batch following many feeds
// Let timeline:1 will follow user:1, user:2 and user:3
follows := []stream.FollowRelationship{
stream.NewFollowRelationship(timelineFeed, userFeed1),
stream.NewFollowRelationship(timelineFeed, userFeed2),
stream.NewFollowRelationship(timelineFeed, userFeed3),
}
err := client.FollowMany(context.TODO(), follows)
if err != nil {
panic(err)
}
// copy only the last 10 activities from every feed
err = client.FollowMany(context.TODO(), follows, stream.WithFollowManyActivityCopyLimit(10))
if err != nil {
panic(err)
}
// Unfollow many
unfollows := []stream.UnfollowRelationship{}
err = client.UnfollowMany(context.TODO(), unfollows)
if err != nil {
panic(err)
}
This method can only be used server-side.
Note that the follow relationships will be processed in the background asynchronously so they wont show up immediately.
Parameters
The Batch Follow API does not return response data.
Batch Unfollow
Unfollow Many enables you to unfollow many feeds in bulk. However, its implementation is heavy. That’s why its usage restricted to Enterprise accounts. While unfollowing, history can be kept by keep_history.
It’s false by default. When unfollow is done, any activities that come from unfollowed feed will be removed but if the flag is set, then this history will remain.
Unfollow Many has a limit of 250 unfollows per request.
// Batch unfollowing many feeds
// Let timeline:1 will follow user:1, user:2 and user:3
const unfollows = [
{'source': 'timeline:1', 'target': 'user:1'},
{'source': 'timeline:1', 'target': 'user:2'},
{'source': 'timeline:1', 'target': 'user:3', 'keep_history': true}
];
await client.unfollowMany(unfollows);
// Unfollow many
unfollows := []stream.UnfollowRelationship{ /* ... */ }
err := client.UnfollowMany(context.TODO(), unfollows)
if err != nil {
panic(err)
}
The Batch Unfollow API does not return response data. An error is returned on wrong input.
Batch update TO targets
Allows you to update the TO targets of multiple activities in a feed at once, up to a max of 100 activities per call.
feed, err := client.FlatFeed("user", "1")
if err != nil {
panic(err)
}
reqs := []stream.UpdateToTargetsRequest{
{
ForeignID: "foreignID-0",
Time: stream.Time{},
Opts: []stream.UpdateToTargetsOption{
stream.WithToTargetsAdd("foo:bar", "baz:qux"),
},
},
{
ForeignID: "foreignID-1",
Time: stream.Time{},
Opts: []stream.UpdateToTargetsOption{
stream.WithToTargetsAdd("foo:bar", "baz:qux"),
stream.WithToTargetsRemove("abc:123"),
},
},
}
resp, err := feed.BatchUpdateToTargets(context.Background(), reqs)
if err != nil {
panic(err)
}
Currently only available in the Go SDK, if you need support for your SDK please contact support.