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
Tidied up DeleteRepost and DeleteLike to have better error results
Added an overload to GetProfile() to load the profile of the current user
Renamed MuteActor and UnmuteActor to Mute and Unmute
Added SetProfileRecord method
Added simple tutorial docs with the same topic as the official sdk docs
Copy file name to clipboardExpand all lines: docs/docs/tutorials/creatingAPost.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ The following code will login to Bluesky and create a simple post.
6
6
7
7
The result of a successful call to `Post()` creates a [record](../commonTerms.md#records) in your Bluesky [repository](../commonTerms.md#repositories).
8
8
9
-
The call will return, amongst other information, the `at://`[uri](../commonTerms.md#uri)of the post record and its [content identifier (CID)](../commonTerms.md#cid).
9
+
The call will return, amongst other information, the `at://`[uri](../commonTerms.md#uri) of the post record and its [content identifier (CID)](../commonTerms.md#cid).
### Adding or updating the profile avatar or banner
43
+
44
+
Images are handled as separate records by Bluesky, so adding or updating an avatar or profile banner requires the additional step of uploading the image to create a Blob record.
| atUri | AtUri | The AtUri of the follow record. | Yes |
41
+
42
+
```c#
43
+
awaitagent.DeleteFollow(atUri);
44
+
```
45
+
46
+
A `StrongReference` to the follow record is returned from the call to `Follow()`
47
+
or from [getting the user's profile](viewingProfiles.md).
48
+
49
+
If the `Viewer` property on a profile view is not null then the `Following` property on `Viewer` will be a `StrongReference` if the current is following
50
+
the user whose profile you looked up. That `StrongReference`'s `Uri` property will be the at:// uri of the follow record.
0 commit comments