Skip to content

Commit b5bb240

Browse files
committed
cleanup
1 parent 183f2d8 commit b5bb240

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

MyApp/_pages/background-jobs.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -669,33 +669,33 @@ public class NotifyCheckUrlsCommand(IHttpClientFactory clientFactory)
669669
`ReplyTo` can be any URL which by default will have the result POST'ed back to the URL with a JSON
670670
Content-Type. Typically URLs will contain a reference Id so external clients can correlate a callback
671671
with the internal process that initiated the job. If the callback API is publicly available you'll
672-
want to use an internal Id that can't be guessed so the callback can't be spoofed like a Guid, e.g:
672+
want to use an internal Id that can't be guessed so the callback can't be spoofed, like a Guid, e.g:
673673

674674
`$"https://api.example.com?refId={RefId}"`
675675

676-
If needed the callback URL can be customized on how the HTTP Request is sent:
676+
If needed the callback URL can be customized on how the HTTP Request callback is sent.
677677

678678
If the URL contains a space, the text before the space is treated as the HTTP method:
679679

680680
`"PUT https://api.example.com"`
681681

682-
If the auth part contains a colon :, it's treated as Basic Auth.
682+
If the auth part contains a colon `:` it's treated as Basic Auth:
683683

684684
`"username:password@https://api.example.com"`
685685

686-
If name starts with 'http.' sends a HTTP Header
686+
If name starts with `http.` sends a HTTP Header
687687

688688
`"http.X-API-Key:myApiKey@https://api.example.com"`
689689

690-
Otherwise used as Bearer Token:
690+
Otherwise it's sent as a Bearer Token:
691691

692692
`"myToken123@https://api.example.com"`
693693

694-
Bearer Token or HTTP Headers starting with '$' is substituted with Environment Variable if exists
694+
Bearer Token or HTTP Headers starting with `$` is substituted with Environment Variable if exists:
695695

696696
`"$API_TOKEN@https://api.example.com"`
697697

698-
When needed headers, passwords and tokens can be URL encoded if they contain any delimiter characters.
698+
When needed headers, passwords and tokens can be URL encoded if they contain any delimiter characters.
699699

700700
## Implementing Commands
701701

MyApp/_pages/releases/v8_04.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -687,33 +687,33 @@ public class NotifyCheckUrlsCommand(IHttpClientFactory clientFactory)
687687
`ReplyTo` can be any URL which by default will have the result POST'ed back to the URL with a JSON
688688
Content-Type. Typically URLs will contain a reference Id so external clients can correlate a callback
689689
with the internal process that initiated the job. If the callback API is publicly available you'll
690-
want to use an internal Id that can't be guessed so the callback can't be spoofed like a Guid, e.g:
690+
want to use an internal Id that can't be guessed so the callback can't be spoofed, like a Guid, e.g:
691691

692692
`$"https://api.example.com?refId={RefId}"`
693693

694-
If needed the callback URL can be customized on how the HTTP Request is sent:
694+
If needed the callback URL can be customized on how the HTTP Request callback is sent.
695695

696696
If the URL contains a space, the text before the space is treated as the HTTP method:
697697

698698
`"PUT https://api.example.com"`
699699

700-
If the auth part contains a colon :, it's treated as Basic Auth.
700+
If the auth part contains a colon `:` it's treated as Basic Auth:
701701

702702
`"username:password@https://api.example.com"`
703703

704-
If name starts with 'http.' sends a HTTP Header
704+
If name starts with `http.` sends a HTTP Header
705705

706706
`"http.X-API-Key:myApiKey@https://api.example.com"`
707707

708-
Otherwise used as Bearer Token:
708+
Otherwise it's sent as a Bearer Token:
709709

710710
`"myToken123@https://api.example.com"`
711711

712-
Bearer Token or HTTP Headers starting with '$' is substituted with Environment Variable if exists
712+
Bearer Token or HTTP Headers starting with `$` is substituted with Environment Variable if exists:
713713

714714
`"$API_TOKEN@https://api.example.com"`
715715

716-
When needed headers, passwords and tokens can be URL encoded if they contain any delimiter characters.
716+
When needed headers, passwords and tokens can be URL encoded if they contain any delimiter characters.
717717

718718
## Implementing Commands
719719

0 commit comments

Comments
 (0)