Skip to content
This repository was archived by the owner on May 5, 2025. It is now read-only.

Commit 8b8c517

Browse files
authored
Update salesforce.md (#42)
1 parent dc93fea commit 8b8c517

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

docs/sources/salesforce.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ after wrapping them in a [CloudEvent][ce] envelope.
99

1010
Salesforce source uses [OAuth JWT credentials][salesforce-oauth-jwt] for service authentication.
1111

12-
1. First you will need to generate a X509 certificate for signing and verifying requests.
13-
We will be using `openssl` but any other certificate generation tool should work.
12+
1. First, you will need to generate an X509 certificate for signing and verifying requests.
13+
We will be using `OpenSSL` but any other certificate generation tool should work.
1414

1515
```sh
1616
openssl req -x509 -sha256 -nodes -days 36500 -newkey rsa:2048 -keyout tm-sf.key -out tm-sf.crt
@@ -19,7 +19,7 @@ openssl req -x509 -sha256 -nodes -days 36500 -newkey rsa:2048 -keyout tm-sf.key
1919
2. At Salesforce site select `Setup > Apps > App Manager`, click on `New Connected App`.
2020

2121
- Fill in mandatory fields, then click `Enable OAuth Settings`.
22-
- Callback URL is mandatory but can be filled with any HTTPS data.
22+
- A callback URL is mandatory but can be filled with any HTTPS data.
2323
- Enable `Use digital signatures` and upload the public cert (`tm-sf.crt` in the example above).
2424
- Add Scopes for `api` and `refresh_token, offline_access`.
2525
- Save.
@@ -49,9 +49,9 @@ openssl req -x509 -sha256 -nodes -days 36500 -newkey rsa:2048 -keyout tm-sf.key
4949
Refer to [Salesforce stream API][salesforce-stream-api-docs] on how to create stream channels:
5050

5151
- Change Data Capture events: `/data/ChangeEvents`
52-
- PushTopics for streams based on single entity SOQL querys: `/topic/TicketsSold`
52+
- PushTopics for streams based on single entity SOQL queries: `/topic/TicketsSold`
5353
- Standard Platform Events for Salesforce event monitoring: `/event/LoginEventStream`
54-
- Custom Platform Events for your SOQL plaform events: `/event/MyCustom__e`
54+
- Custom Platform Events for your SOQL platform events: `/event/MyCustom__e`
5555

5656
Each Streaming event type has a distinct [set of features][salesroce-event-features]
5757

@@ -79,8 +79,7 @@ In the Source creation form, give a name to the event source and add the followi
7979

8080
![Salesforce source form](../images/salesforce-source/salesforce-source-form.png)
8181

82-
After clicking the `Save` at the source you will be taken back to the Bridge editor. Proceed to adding the remaining
83-
components to the Bridge, then submit it.
82+
After clicking `Save` at the source, you will be taken back to the Bridge editor. Proceed to add the remaining components to the Bridge, then submit it.
8483

8584
Wait a few seconds for all components to become ready, the green `Status` indicator for the bridge indicates that the event source is ready to forward messages from the Salesforce event Stream.
8685

0 commit comments

Comments
 (0)