Growi
3289 단어 Growi
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
액세스http://localhost:3000
ユーザー
→ユーザー設定
→API Tokenの取得
(API) 기사 기고문
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
Reference
이 문제에 관하여(Growi), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/tukiyo3/items/82261dd381cb4357a07b텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)