/api/v3/message RPC Method
身体パラメータ
オブジェクト
オブジェクト
必須
読み込み中...
boc
文字列
読み込み中...
返品
V2SendMessageResult
オブジェクト
読み込み中...
message_hash
文字列
読み込み中...
message_hash_norm
文字列
読み込み中...
リクエスト
1curl --location 'https://docs-demo.ton-mainnet.quiknode.pro/api/v3/message' \2--header 'accept: application/json' \3--ヘッダー 'Content-Type: application/json' \4--data '{5"boc": "YOUR_BOC_VALUE"6}'
1curl --location 'https://docs-demo.ton-mainnet.quiknode.pro/api/v3/message' \2--header 'accept: application/json' \3--ヘッダー 'Content-Type: application/json' \4--data '{5"boc": "YOUR_BOC_VALUE"6}'
1const myHeaders = new Headers();2myHeaders.append("accept", "application/json");3myHeaders.append("Content-Type", "application/json");45const raw = JSON.stringify({6"boc": "YOUR_BOC_VALUE"7});89const requestOptions = {10メソッド: "POST",11ヘッダー: myHeaders,12本文: raw,13リダイレクト: "follow"14};1516fetch("https://docs-demo.ton-mainnet.quiknode.pro/api/v3/message", requestOptions)17.その後((レスポンス) => レスポンス.text())18.その後((結果) => コンソール.log(result))19.catchcatch((エラー) => コンソール.エラー(エラー));
1const myHeaders = new Headers();2myHeaders.append("accept", "application/json");3myHeaders.append("Content-Type", "application/json");45const raw = JSON.stringify({6"boc": "YOUR_BOC_VALUE"7});89const requestOptions = {10メソッド: "POST",11ヘッダー: myHeaders,12本文: raw,13リダイレクト: "follow"14};1516fetch("https://docs-demo.ton-mainnet.quiknode.pro/api/v3/message", requestOptions)17.その後((レスポンス) => レスポンス.text())18.その後((結果) => コンソール.log(result))19.catchcatch((エラー) => コンソール.エラー(エラー));
1import リクエスト23url = "https://docs-demo.ton-mainnet.quiknode.pro/api/v3/message"45ペイロード = json.dumps({6"boc": "YOUR_BOC_VALUE"7})8ヘッダー = {9'accept': 'application/json',10「Content-Type」: 'application/json'11}1213response = requests.request("POST", url, headers=headers, json=payload)
1import リクエスト23url = "https://docs-demo.ton-mainnet.quiknode.pro/api/v3/message"45ペイロード = json.dumps({6"boc": "YOUR_BOC_VALUE"7})8ヘッダー = {9'accept': 'application/json',10「Content-Type」: 'application/json'11}1213response = requests.request("POST", url, headers=headers, json=payload)
1require "uri"2require "net/http"34url = URI("https://docs-demo.ton-mainnet.quiknode.pro/api/v3/message")56http = ネット::HTTP.new(url.ホスト, url.ポート);7リクエスト = ネット::HTTP::POST.new(URL)8リクエスト["accept"] = "application/json"9リクエスト["Content-Type"] = "application/json"10リクエスト.本文 = JSON.dump({11"boc": "YOUR_BOC_VALUE"12})13response = http.request(request)
1require "uri"2require "net/http"34url = URI("https://docs-demo.ton-mainnet.quiknode.pro/api/v3/message")56http = ネット::HTTP.new(url.ホスト, url.ポート);7リクエスト = ネット::HTTP::POST.new(URL)8リクエスト["accept"] = "application/json"9リクエスト["Content-Type"] = "application/json"10リクエスト.本文 = JSON.dump({11"boc": "YOUR_BOC_VALUE"12})13response = http.request(request)