How do post a message on NFT

Post a message on NFT using an application

Did you try to post a message on NFTs using the application? You can check out this guide to post a message using our no-code application.

Post a message on NFTs using API's

The process of posting a message on NFT.Kred using the API takes on the same approach as posting it using our no-code application. We have an API /nft/post which we can use to post a message on NFTs using API.

curl --request POST \
     --url 'https://api.nft.kred/nft/post?token=yourTokenValue&nft=99999&text=Sample Message to post' \
     --header 'Accept: application/json' \
     --header 'Authorization: Basic am9obndvb2R5OTg1MkBnbWFpbC5jb206QWRtaW5AMTI=='

Post a message on NFTs using Python SDK

Posting a message using Python-SDK is simple. This Python SDK bridges the gap between your applications and NFT.Kred APIs. Full-scale NFT solutions can be built in hours - instead of months. You can use NFT.Kred functionality via this python package and interact with the NFT.Kred APIs directly in your app.

Installation & Usage
We have created a tutorial on how you can install the Python SDK on your machine. Read our step-by-step guide on “How to install Python SDK” for more details. After importing the python SDK on the python file, please follow the below steps to post a message on NFT using Python SDK.

Step 1: Import SDK Files
Create a python file and import the below necessary library files by adding the following code.

from kred import services
from kred import models

Step 2: Define post API method on your python file
Now we need to create a method that will call the "post a message on NFT" functionality on your code. Right now, we want to post a message on NFT under SocialActions so we will use a "post" method. we can check which method we should use by following the available examples related to the SocialActions, please have a look at the Example References documentation section, where all the available examples are given. You can copy those methods in your file and build your app.

def post(token, nft=None, uuid=None, symbol=None, sequence=None, grab=None, text=None):
    """Post a message on NFTs.
    """

    # service class
    service = services.SocialClient(token)
    model = models.SocialActionModels()

    # parameters
    model.nft = nft  # The NFT ID.
    model.uuid = uuid # The NFT UUID.
    model.symbol = symbol # The batch symbol.
    model.sequence = sequence # The batch sequence.
    model.grab = grab # The NFT Grab ID.
    model.text = text # Message text.

    # Service API calling
    response = service.post(model)

Step 3: Call your Defined method to post a message on NFTs
From the above step, we have created a python file and defined a "post" method to post a comment on NFT. Now we will call that method and pass the required parameter. We may have a look at the required parameter list by following this post API endpoint.

# Define your token here
token = "token value"

# Call define method with values
post(token, nft, uuid, symbol, sequence, grab, text)

That's it, now, you can post a message on NFTs with ease using API and Python SDK.