audio streaming app plyr.fm
38
fork

Configure Feed

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

fix: update oauth metadata path to /oauth-client-metadata.json (#327)

* for new structure

* fix: update oauth metadata path to /oauth-client-metadata.json

authored by

nate nowack and committed by
GitHub
5359ba93 016d6910

+2 -2
+2 -2
backend/src/backend/main.py
··· 174 174 } 175 175 176 176 177 - @app.get("/client-metadata.json") 177 + @app.get("/oauth-client-metadata.json") 178 178 async def client_metadata() -> dict: 179 179 """serve OAuth client metadata.""" 180 180 # Extract base URL from client_id for client_uri 181 - client_uri = settings.atproto.client_id.replace("/client-metadata.json", "") 181 + client_uri = settings.atproto.client_id.replace("/oauth-client-metadata.json", "") 182 182 183 183 return { 184 184 "client_id": settings.atproto.client_id,