0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Growi

Posted at

起動方法

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

APIへのアクセストークン取得

  • 右上のユーザーユーザー設定API Tokenの取得

スクリーンショット_2020-05-13_12-31-21.png

(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
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?