起動方法
git clone "https://github.com/weseek/growi-docker-compose.git" growi
cd growi
sed -i \
-e 's/# - FILE_UPLOAD=local/- FILE_UPLOAD=local/' \
docker-compose.yml
docker-compose up -d
- 1分まつ
- http://localhost:3000 にアクセス
APIへのアクセストークン取得
- 右上の
ユーザー
→ユーザー設定
→API Tokenの取得
(API) 記事の投稿
- /user/user1/hoge に aa という内容の記事を投稿する例。
create_page.py
import requests
# 接続先。http://localhost:3000 を想定。
protocol = 'http'
host_address = 'localhost:3000'
access_token = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
# 投稿API
def pages_create(path, body):
url = f'{protocol}://{host_address}/_api/pages.create'
requests.post(url, data={'body':body, 'path':path, 'access_token':access_token})
# 投稿先と内容の指定
page_path="/user/user1/hoge"
template_body="aa"
# 投稿
pages_create(page_path, template_body)
投稿実施
python3 create_page.py