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

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

+3 -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