A personal app view to see Bsky posts of your followers (for when their app view goes down)
17
fork

Configure Feed

Select the types of activity you want to include in your feed.

print out the did provided in the request #2

open opened by willdot.net targeting main from push-kxmkwnpussvu

Signed-off-by: Will did:plc:dadhhalkfcq3gucaq25hjqon

Labels

None yet.

assignee

None yet.

Participants 1
AT URI
at://did:plc:dadhhalkfcq3gucaq25hjqon/sh.tangled.repo.pull/3mkxes4xow322
+3 -1
Diff #1
+3 -1
src/xrpc/routes.rs
··· 27 27 pub async fn app_bsky_actor_get_profile( 28 28 State(_): State<AppState>, 29 29 ExtractOptionalServiceAuth(_auth): ExtractOptionalServiceAuth, 30 - ExtractXrpc(_): ExtractXrpc<GetProfileRequest>, 30 + ExtractXrpc(req): ExtractXrpc<GetProfileRequest>, 31 31 ) -> Result<Json<GetProfileOutput<'static>>, XrpcErrorResponse> { 32 + let actor = req.actor.to_string(); 33 + println!("{actor}"); 32 34 return Err(XrpcErrorResponse::not_implemented()); 33 35 } 34 36

History

2 rounds 0 comments
sign up or login to add to the discussion
1 commit
expand
print out the did provided in the request
merge conflicts detected
expand
  • src/server.rs:13
  • src/xrpc/routes.rs:2
expand 0 comments
1 commit
expand
added get profile and return not implemented
expand 0 comments