Skip to content

Commit

Permalink
Update CONTRIBUTING.md
Browse files Browse the repository at this point in the history
  • Loading branch information
golf1052 committed Nov 30, 2024
1 parent c9e65e4 commit 95143dc
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,22 @@ May or may not be up to date. Do a find all on "GetSecret" to confirm.
2. In Program.cs update the AuthorityHost URL to use the tenant ID instead of common
3. Finally exclude all credential types except for InteractiveBrowserCredentials. That must be specifically included.

### Extracting Bluesky Key from Local Client

In console

```javascript
const openRequest = indexedDB.open('@atproto-oauth-client');
```

```javscript
const sessionRequest = openRequest.result.transaction('session').objectStore('session').get('did:plc:penphldurhndgdxxn3ezvmoi');
```

```javascript
let privateKey = sessionRequest.result.value.dpopKey.keyPair.privateKey;
```

## Useful Links

- [Azure Maps Samples](https://samples.azuremaps.com/)
Expand Down

0 comments on commit 95143dc

Please sign in to comment.