GetCollectionByID Access API Method
Parámetros
Id
cadena
OBLIGATORIO
Cargando...
Devoluciones
collection
objeto
Cargando...
id
cadena
Cargando...
transaction_ids
matriz
Cargando...
Solicitud
1paquete principal23import (4«contexto»5"encoding/hex"6«encoding/json»7«fmt»8«registro»910"github.com/onflow/flow/protobuf/go/flow/access"11)1213func main() {1415// Requires authenticating before making the request. Refer to Intro Page on how Authentication can be done.16client, err := getAccessClientWithBasicAuth("ENDPOINT-NAME", "TOKEN_GOES_HERE")17ctx := context.Background()18si err != nil {19log.Fatalf("err: %v", err)20}2122// Get Collection by ID23collectionId, err := hex.DecodeString("eb6733050812a58450310980032ea2fdbee8a7c5f6aad252abf1ef9d82fd8ff5")24collectionResp, err := client.GetCollectionByID(ctx, &access.GetCollectionByIDRequest{Id: collectionId})25respJSON, err := json.Marshal(collectionResp)26si err != nil {27log.Fatal("get collection by ID failed: ", err)28}29fmt.Println("Get Collection by ID:", string(respJSON))30}
1paquete principal23import (4«contexto»5"encoding/hex"6«encoding/json»7«fmt»8«registro»910"github.com/onflow/flow/protobuf/go/flow/access"11)1213func main() {1415// Requires authenticating before making the request. Refer to Intro Page on how Authentication can be done.16client, err := getAccessClientWithBasicAuth("ENDPOINT-NAME", "TOKEN_GOES_HERE")17ctx := context.Background()18si err != nil {19log.Fatalf("err: %v", err)20}2122// Get Collection by ID23collectionId, err := hex.DecodeString("eb6733050812a58450310980032ea2fdbee8a7c5f6aad252abf1ef9d82fd8ff5")24collectionResp, err := client.GetCollectionByID(ctx, &access.GetCollectionByIDRequest{Id: collectionId})25respJSON, err := json.Marshal(collectionResp)26si err != nil {27log.Fatal("get collection by ID failed: ", err)28}29fmt.Println("Get Collection by ID:", string(respJSON))30}
¿Aún no tienes una cuenta?
Crea tuendpoint Quicknode endpoint segundos y empieza a desarrollar
Empieza gratis