DIscord icon
We're now on Discord! Invite hermesly into your server!
Discord bot

Hermesly

Your best bot

Facebook Icon
Facebook

Meet hermesly on facebook, your friendly bot.

DIscord icon
Discord

Our new release, at the discord wherein you can bring hermesly into your server.

Facebook Bot

Hermesly is your awesome and friendly bot on the message platform, which is our starter platform and learn some lessons while developing and improving hermesly.

Helper commands
Hermesly provides a helper commands
help Displays list of commands.
help full Display full list of commands.
define WORD Let hermesly define a word your specified.
grammar YOUR SENTENCE GOES HERE Let hermesly try to correct your grammar.
Chat
Hermesly can connect you to random user around the global
chat now Search a user with the same interest as yours.
chat end Disconnect to chat.
Wallet
Let you document your earning and expenses each day and let hermesly report your expenses daily and monthly.
wl list List all transactions.
wl 100 If you earn some money you can do it like this.
wl -25 Oh, you bought something?
wl report Let hermesly report your today's and yesterday's.

Discord WebHook

Currently, hermesly only support webhook at discord platform. We're always moving forward to give hermesly a new functions to help
and solve problems that teams and other people encounter each day or even give out smiles out of thin air.

cURL
Github Action
PHP
NodeJS
Dart
cURL

Embed a webhook on your shell command

terminal
curl -X GET https://hook.hermesly.io/TOKEN?text=Hello+world!
Github Action

Let hermesly notify you when there's a Pull Request

terminal
name: Hermesly Webhook

on:
  pull_request:
    branches:
      - 'development'

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v3

      - name: Set up Node.js
        uses: actions/setup-node@v4
        with:
          node-version: '14'

      - name: Run a one-line script
        run: |
          PR_TITLE=$(echo "${{ github.event.pull_request.title }}" | node -p 'encodeURIComponent(require("fs").readFileSync(0, "utf-8"))')
          PR_NUMBER=${{ github.event.pull_request.number }}
          curl -X GET "https://hook.hermesly.io/TOKEN?message=New+Pull+Request+($PR_TITLE)%0Ahttps://github.com/${{ github.repository }}/pull/$PR_NUMBER"
PHP

Perform a CURL in your PHP back-end application

php
$ch = curl_init();

// Set the URL to fetch
$url = "https://hook.hermesly.io/TOKEN?message=hello+from+php";
curl_setopt($ch, CURLOPT_URL, $url);

// Execute the session
$result = curl_exec($ch);

// Close the session
curl_close($ch);
NodeJS

Perform a CURL on your NodeJS Back-end. Currently we're working on more secured webhook by using credentials, token shouldn't be publicly available as of writing.

javascript
const request = require('request');

let URL = 'https://hook.hermesly.io/TOKEN?message=Hello+from+the+NodeJS';
request(URL, (error, response, body) => {
  // Result
});
Dart

Developing a flutter app or just a console app?

dart
import 'package:http/http.dart' as http;

void main() async {
  // Specify the URL for the GET request
  var url = Uri.parse('https://hook.hermesly.io/TOKEN');

  // Send the GET request
  var response = await http.get(url);

  // Check if the request was successful (status code 200)
  if (response.statusCode == 200) {
    // Parse and handle the response data
    print('Response data: ${response.body}');
  } else {
    // Handle the error if the request was not successful
    print('Request failed with status: ${response.statusCode}');
  }
}
Allright Reserved © 2022 - 2024