Skip to content

documented need for specifying tags on post #285

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion steem/commit.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,20 +189,25 @@ def post(self,
Setting category, tags or community will override the values provided
in json_metadata and/or comment_options where appropriate.

WARNING! if you dont provide tags, json_metadata, community or category,
some RPC nodes will fail on RCP Link too short error!

Args:

title (str): Title of the post
body (str): Body of the post/comment
author (str): Account are you posting from
permlink (str): Manually set the permlink (defaults to None).
If left empty, it will be derived from title automatically.

reply_identifier (str): Identifier of the parent post/comment (only
if this post is a reply/comment).

json_metadata (str, dict): JSON meta object that can be attached to
the post.

comment_options (str, dict): JSON options object that can be
attached to the post.

Example::
comment_options = {
'max_accepted_payout': '1000000.000 SBD',
Expand Down