Coder Social home page Coder Social logo

mattermostincomingwebhookdemo's Introduction

Mattermost Incoming Webhooks

Create an Incoming Webhook

Click on "Integrations" > "Incoming Webhooks" > "Add Incoming Webhooks"

Alt text

Alt text

Alt text

How to use the Webhook URL?

Write a message to the default channel:

curl -i -X POST -H 'Content-Type: application/json' \
 -d '{"text": "Hello, World!"}' \
 https://your-mattermost-server.com/hooks/GENERATED-KEY

Alt text

Note the "BOT" tag!

Write a message to a different channel than the default:

curl -i -X POST -H 'Content-Type: application/json' \
 -d '{"text": "Hello, World!", "channel": "CHANNEL-NAME" }' \
 https://your-mattermost-server.com/hooks/GENERATED-KEY

Write a message with additional content:

curl -i -X POST -H 'Content-Type: application/json' \
 -d '{"text": "Hello, World!", "props": { "card": "Card demo content." } }'\
 https://chat.canonical.com/hooks/GENERATED-KEY

Alt text Alt text

See the official doumnetation for more details.

Ideas

Continuous Integration

For example: Official Mattermost Github Action

on: [push, pull_request]

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
    - name: Create the Mattermost Message
      run: |
        echo "{\"text\":\"testing github action :tada:\"}" > mattermost.json
    - uses: mattermost/action-mattermost-notify@master
      env:
        MATTERMOST_WEBHOOK_URL: ${{ secrets.MATTERMOST_WEBHOOK_URL }}

Share Snippets from your Editor

For example: 3rd Party Mattermost Extension

.vscode/settings.json:

{
    "mattermost": 
    {
        "channels":
        [
            {
                "name": "Canonical",
                "url": "https://chat.canonical.com/hooks/GENERATED-KEY"
            }
        ]
    }
}

mattermostincomingwebhookdemo's People

Contributors

dviererbe avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.