Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc update #187

Merged
merged 2 commits into from
Jan 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/sms_otp_service.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ properties.maxValidationAttemptsAllowed=5
```
5. If notifications are managed by the Identity Server, configure the **event publisher** by creating
`SMSPublisher.xml` file in the `<IS_HOME>/deployment/server/eventpublishers/` directory.
(Make sure to add a valid webhook endpoint in `http.url` section.)
```xml
<?xml version="1.0" encoding="UTF-8"?>
<eventPublisher name="SMSPublisher" processing="enable"
Expand All @@ -48,7 +49,7 @@ properties.maxValidationAttemptsAllowed=5
</mapping>
<to eventAdapterType="http">
<property name="http.client.method">httpPost</property>
<property name="http.url">https://webhook.site/678cf852-39a3-416a-8ff9-4331905d1b95</property>
<property name="http.url">VALID_WEBHOOK_ENDPOINT</property>
</to>
</eventPublisher>
```
Expand Down
Loading