mirror of
https://github.com/caronc/apprise.git
synced 2024-12-04 05:54:35 +01:00
Page:
Notify_stride
Pages
CLI_Usage
DemoPlugin_Basic
DemoPlugin_WebRequest
Development_API
Development_Apprise_Details
Development_Contribution
Development_LogCapture
Home
Notification_Graveyard
Notify_Custom_Form
Notify_Custom_JSON
Notify_Custom_XML
Notify_Revolt
Notify_africas_talking
Notify_apprise_api
Notify_aprs
Notify_bark
Notify_boxcar
Notify_bulksms
Notify_bulkvs
Notify_burst_sms
Notify_chantify
Notify_clicksend
Notify_d7networks
Notify_dapnet
Notify_dbus
Notify_dingtalk
Notify_discord
Notify_email Fastmail
Notify_email
Notify_emby
Notify_enigma2
Notify_faast
Notify_fcm
Notify_feishu
Notify_flock
Notify_freemobile
Notify_gitter
Notify_gnome
Notify_googlechat
Notify_gotify
Notify_growl
Notify_guilded
Notify_homeassistant
Notify_httpsms
Notify_ifttt
Notify_join
Notify_kavenegar
Notify_kodi
Notify_kumulos
Notify_lametric
Notify_line
Notify_lunasea
Notify_macosx
Notify_mailgun
Notify_mastodon
Notify_matrix
Notify_mattermost
Notify_messagebird
Notify_misskey
Notify_mqtt
Notify_msg91
Notify_msteams
Notify_nexmo
Notify_nextcloud
Notify_nextcloudtalk
Notify_notica
Notify_notifiarr
Notify_notifico
Notify_ntfy
Notify_office365
Notify_onesignal
Notify_opsgenie
Notify_pagerduty
Notify_pagertree
Notify_parseplatform
Notify_plivo
Notify_popcornnotify
Notify_prowl
Notify_pushalot
Notify_pushbullet
Notify_pushdeer
Notify_pushed
Notify_pushjet
Notify_pushme
Notify_pushover
Notify_pushsafer
Notify_pushy
Notify_reddit
Notify_rocketchat
Notify_rsyslog
Notify_ryver
Notify_sendgrid
Notify_serverchan
Notify_ses
Notify_seven
Notify_sfr
Notify_signal
Notify_simplepush
Notify_sinch
Notify_slack
Notify_sms_manager
Notify_smseagle
Notify_smtp2go
Notify_sns
Notify_sparkpost
Notify_splunk
Notify_spontit
Notify_streamlabs
Notify_stride
Notify_synology_chat
Notify_syslog
Notify_techulus
Notify_telegram
Notify_threema
Notify_toasty
Notify_twilio
Notify_twist
Notify_twitter
Notify_voipms
Notify_wecombot
Notify_whatsapp
Notify_windows
Notify_workflows
Notify_wxpusher
Notify_wxteams
Notify_xbmc
Notify_xmpp
Notify_zulip
Sponsors
Troubleshooting
URLBasics
config
config_text
config_yaml
decorator_notify
persistent_storage
showcase
4
Notify_stride
Chris Caron edited this page 2019-09-07 14:34:47 -04:00
💀 Stride Notifications
- Source: https://www.stride.com/
- Icon Support: No
- Message Format: Text
- Message Limit: 2000 Characters per message
- Service End Date: Feb 14th 2019
Service End Reason
The creators of Stride (Atlassian) performed partnership with Slack and therefore are discontinuing both Stride and Hipchat services. See their official announcement here. This was what was displayed on their website when looking up info on these products:
.
Legacy Setup Details
Account Setup
Stride is the successor to Hipchat. It requires you to create a custom app and assign it to your channel you create.
Let's start from the beginning:
- When you sign-up with stride.com, the site will ask if you want to join a group or creating your own. Brand new users will start their own while companies might have already formed a group you want to join.
- Once you get set up, you'll have the option of creating a channel (or if you joined your companies group, you might already see channels you can join in front of you). Either way, you need to be in a channel before you get to the next step.
- Once you're in a channel you'll want to connect apprise (this notification service) up. To do this, you need to go to the App Manager (on right hand side in your browser) an choose to 'Connect your own app'.
- It will ask you to provide a 'token name' which can be whatever you want. This will be used for reference later. Click the Create button when you're done.
- When it completes it will generate a token that looks something like:
HQFtq4pF8rKFOlKTm9Th
This is important and we'll referenced it as your {auth_token}. - If you scroll down it will also generate you a conversation URL that might look like:
https://api.atlassian.com/site/ce171c45-09ae-4fac-a73d-5a4b7a322872/conversation/a54a80b3-eaad-4524-9a3a-f6653bcfb100/message
Think of this URL like this:https://api.atlassian.com/site/{cloud_id}/conversation/{convo_id}/message
. Specifically pay close attention to the {cloud_id} and {convo_id} because you will need this to build your custom URL with.
Syntax
The valid syntax is as follows:
- stride://{auth_token}/{cloud_id}/{convo_id}
Parameter Breakdown
Variable | Required | Description |
---|---|---|
auth_token | Yes | The Authorization token that is created for you once you create your Custom App (that you associate with your channel). |
cloud_id | Yes | This is extracted from the URL that is created for you when you create your Custom App (the same one that is identified above). Note: This is the first part of the conversation URL: https://api.atlassian.com/site/{cloud_id}/conversation/{convo_id}/message |
convo_id | Yes | This is extracted from the URL that is created for you when you create your Custom App (the same one that is identified above). Note: This is the second part of the conversation URL: https://api.atlassian.com/site/{cloud_id}/conversation/{convo_id}/message |
Example
Send a stride notification:
# Assuming our {auth_token} is HQFtq4pF8rKFOlKTm9Th
# Assuming our {cloud_id} is ce171c45-09ae-4fac-a73d-5a4b7a322872
# Assuming our {convo_id} is a54a80b3-eaad-4524-9a3a-f6653bcfb100
apprise stride://HQFtq4pF8rKFOlKTm9Th/ce171c45-09ae-4fac-a73d-5a4b7a322872/a54a80b3-eaad-4524-9a3a-f6653bcfb100