@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

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

Clarifiying Documentation Links

Summary: Fixes T8487.

Test Plan: Verify that links are clear at Diviner > Phabricator Contributor Docs > Using the Phabricator OAuth Server.

Reviewers: lpriestley, #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: epriestley, Korvin

Maniphest Tasks: T8487

Differential Revision: https://secure.phabricator.com/D13240

authored by

Paul Kassianik and committed by
epriestley
e74f027f 3de3a72d

+4 -4
+4 -4
src/docs/contributor/using_oauthserver.diviner
··· 35 35 36 36 = Setup - Creating a Client = 37 37 38 - # Visit https://phabricator.example.com/oauthserver/client/create/ 38 + # Visit {nav Your Local Install > OAuth Server > Create Application} 39 39 # Fill out the form 40 40 # Profit 41 41 42 42 = Obtaining an Authorization Code = 43 43 44 - POST or GET https://phabricator.example.com/oauthserver/auth/ with the 44 + POST or GET `https://phabricator.example.com/oauthserver/auth/` with the 45 45 following parameters: 46 46 47 47 - Required - **client_id** - the id of the newly registered client. ··· 76 76 77 77 = Obtaining an Access Token = 78 78 79 - POST or GET https://phabricator.example.com/oauthserver/token/ 79 + POST or GET `https://phabricator.example.com/oauthserver/token/` 80 80 with the following parameters: 81 81 82 82 - Required - **client_id** - the id of the client ··· 101 101 Simply include a query param with the key of "access_token" and the value 102 102 as the earlier obtained access token. For example: 103 103 104 - https://phabricator.example.com/api/user.whoami?access_token=ykc7ly7vtibj334oga4fnfbuvnwz4ocp 104 + ```https://phabricator.example.com/api/user.whoami?access_token=ykc7ly7vtibj334oga4fnfbuvnwz4ocp``` 105 105 106 106 If the token has expired or is otherwise invalid, the client will receive 107 107 an error indicating as such. In these cases, the client should re-initiate