generated from AdobeDocs/dev-site-documentation-template
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adobe Journey Optimizer documentation restructure
- Loading branch information
Pravin Prakash Kumar
authored and
Pravin Prakash Kumar
committed
Oct 9, 2023
1 parent
b20adc6
commit 728a36a
Showing
39 changed files
with
1,726 additions
and
633 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 47 additions & 0 deletions
47
src/pages/documentation/adobe-journey-optimizer/in-app-message/api-usage.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
--- | ||
title: In-App Message - API Reference | ||
description: This document lists the public APIs available in the Messaging extension for implementing in-app messaging. | ||
keywords: | ||
- Adobe Journey Optimizer | ||
- API reference | ||
- Messaging | ||
- In-App Message | ||
--- | ||
|
||
# In-App Message - API Reference | ||
|
||
This document lists the public APIs available in the Messaging extension for implementing in-app messaging. | ||
|
||
## refreshInAppMessages | ||
|
||
<InlineAlert variant="info" slots="text"/> | ||
|
||
By default, the SDK will automatically fetch in-app message definitions from the remote at the time the Messaging extension is registered. This generally happens once per app lifecycle. | ||
|
||
Some use cases may require the client to request an update from the remote more frequently. Calling the following API will force the Messaging extension to get an updated definition of messages from the remote: | ||
|
||
<CodeBlock slots="heading, code" repeat="4" languages="Kotlin, Java, Swift, ObjC" /> | ||
|
||
#### Android | ||
|
||
```kotlin | ||
Messaging.refreshInAppMessages() | ||
``` | ||
|
||
#### Android | ||
|
||
```java | ||
Messaging.refreshInAppMessages(); | ||
``` | ||
|
||
#### iOS | ||
|
||
```swift | ||
Messaging.refreshInAppMessages() | ||
``` | ||
|
||
#### iOS | ||
|
||
```objc | ||
[AEPMobileMessaging refreshInAppMessages]; | ||
``` |
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
31 changes: 31 additions & 0 deletions
31
src/pages/documentation/adobe-journey-optimizer/in-app-message/index.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
--- | ||
title: In-app messaging | ||
description: This document guides you to integrating in-app messaging in your application. | ||
keywords: | ||
- Adobe Journey Optimizer | ||
- Guide | ||
- Messaging | ||
- Tutorial | ||
--- | ||
|
||
# In-App Messaging | ||
|
||
This document guides you to integrating in-app messaging in your application. | ||
|
||
## API reference | ||
* [In-App Messaging APIs](./api-usage.md) | ||
|
||
## Tutorials | ||
|
||
* [Programmatically control the display of in-app messages](./messaging-delegate.md) | ||
* [Call native code from the JavaScript of an in-app message](./native-from-javascript.md) | ||
* [Execute JavaScript code in an in-app message from native code](./javascript-from-native.md) | ||
* [Handle URL clicks from an in-app message](./handle-clicks.md) | ||
|
||
## Public Classes and Enums | ||
* [Class - Message](../public-classes-and-enum/message.md) | ||
* [Enum - MessagingEdgeEventType](../public-classes-and-enum/messaging-edge-event-type.md) | ||
|
||
## Validation | ||
|
||
* [Validate in-app messaging using Assurance](./validate-messages.md) |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
src/pages/documentation/adobe-journey-optimizer/public-classes-and-enum/index.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
--- | ||
title: Public Classes and Enums | ||
description: This documents lists all details about the public classes and enums available in Messaging extension. | ||
keywords: | ||
- Adobe Journey Optimizer | ||
- Messaging | ||
- Push Notification | ||
- Public Classes | ||
- Enum | ||
- Enumeration | ||
- In-App Message | ||
--- | ||
|
||
# Public Classes and Enums | ||
|
||
This documents lists all details about the public classes and enums available in Messaging extension. | ||
|
||
## Push Notification | ||
|
||
* [Class - MessagingPushPayload](./messaging-push-payload.md) | ||
* [Enum - PushTrackingStatus](./push-tracking-status.md) | ||
|
||
## In-App Message | ||
|
||
* [Class - Message](./message.md) | ||
* [Enum - MessagingEdgeEventType](./messaging-edge-event-type.md) |
Oops, something went wrong.