Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kkdai/bookmark-makerserver
A IFTTT MakerServer to help you post your tweet to github issue as a bookmark
https://github.com/kkdai/bookmark-makerserver
bookmark golang heroku itfff tweet
Last synced: 2 months ago
JSON representation
A IFTTT MakerServer to help you post your tweet to github issue as a bookmark
- Host: GitHub
- URL: https://github.com/kkdai/bookmark-makerserver
- Owner: kkdai
- License: apache-2.0
- Created: 2017-05-18T08:41:32.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2024-08-09T15:28:38.000Z (6 months ago)
- Last Synced: 2024-11-09T08:41:32.109Z (3 months ago)
- Topics: bookmark, golang, heroku, itfff, tweet
- Language: Go
- Homepage: https://www.evanlin.com/til-2017-05-23/
- Size: 1.49 MB
- Stars: 35
- Watchers: 5
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bookmark-makerserver: Using IFTTT to store your Tweet to Github Issue as bookmarks
[![GoDoc](https://godoc.org/github.com/kkdai/bookmark-makerserver?status.svg)](https://godoc.org/github.com/kkdai/bookmark-makerserver)
[![Go](https://github.com/kkdai/bookmark-makerserver/actions/workflows/go.yml/badge.svg)](https://github.com/kkdai/bookmark-makerserver/actions/workflows/go.yml)![](images/bookmark.png)
"Bookmark Maker Server" is a webhook service help you using [IFTTT](https://ifttt.com) to forward your tweet to your github issue as a bookmark. Result on [kkdai/bookmarks](https://github.com/kkdai/bookmarks), feel free to take a look.
The detail flow show as follow:
![](images/flow.png)
# How to use it?
Here is the step, how to use this without writing any code.
## Request your own github token for authorization
You need get your github token from [https://github.com/settings/tokens](https://github.com/settings/tokens)
![](images/github_token.png)
## Duplicate your own makerserver by Heroku
Just press button to deploy your own.
[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy)
## How to setup on IFTTT
1. Request a account on [IFTTT Maker](https://ifttt.com/maker)
2. Create your own IFTTT Applet , using if "tweet by you" then call webmaker
3. In the maker server setup page, using following format.
- URL : Your heroku app address
- Method: POST
- Content Type: application/json
- Body: Reference follow format```json
{
"User":"YOUR_GITHUB_USER_NAME",
"Repo":"YOUR_GITHUB_REPO_NAME",
"Msg": "<<<{{Text}}>>>"
}
```4. Add Environment variable in your HEROKU setting.
- `GITHUB_TOKEN` : YOUR_TOKEN
- `GOOGLE_GEMINI_API_KEY` : YOUR_Gemini_API_Key
- `FC_AUTH_TOKEN` : firecrawl API Key to craw web detail.That's it.
License
---------------Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License atUnless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.