Hi, I'm building a navigation button in the topic content using bootstrap framework.
Answers
-
Hi Abu Aiman,
Thank you for asking this question. I discussed with internal teams and they informed me:With how Pulse is built, we don’t have the ability to deep link and specify a specific page/content
Would recommend the user to add the link, but also include the wording of how to access the content so the user can navigate there manually on Pulse
iOS ApplicationPulse iOS uses Universal Links to support deep-link integration. To deep-link into Pulse from an iOS application, you will need open Safari to the following link:
The following code snippet provides an example of what you could put into your iOS application to launch Pulse:
if let url = URL(string: "https://apps.brightspace.com/pulse/launch"), UIApplication.shared.canOpenURL(url) {
UIApplication.shared.open(url, options: [:], completionHandler: nil)
}
Android Application
Pulse Android uses Android App Links to support deep-link integration. To deep-link into Pulse from an Android application, you need to launch an activity with the deep-link: URL:
The following code snippet provides an example of what you could put into your Android application to launch Pulse:
startActivity(Intent(Intent.ACTION_VIEW, Uri.parse("https://apps.brightspace.com/pulse/launch")))
We would recommend the user to add the link, but also include the wording of how to access the content so the user can navigate there manually on Pulse
Did I answer your question?