Un package #Golang simple pour accéder à l'API AirTable.
L'API Golang Airtable a été testée compatible avec GO 1.13 sur UP.
go get github.com/mehanizm/airtable
Vous devriez obtenir your_api_token
dans la page du compte AirTable
client := airtable . NewClient ( "your_api_token" )
Vous pouvez utiliser le client HTTP personnalisé ici
client . SetCustomClient ( http . DefaultClient )
Chaque méthode ci-dessous peut être utilisée avec un contexte personnalisé. Utilisez simplement MethodNameContext
Call et fournissez le contexte comme premier argument.
bases , err := client . GetBases (). WithOffset ( "" ). Do ()
schema , err := client . GetBaseSchema ( "your_database_ID" ). Do ()
Pour obtenir your_database_ID
vous devez vous rendre sur la page API principale et sélectionner la base de données.
table := client . GetTable ( "your_database_ID" , "your_table_name" )
Pour obtenir des enregistrements de la table, vous pouvez utiliser quelque chose comme ça
records , err := table . GetRecords ().
FromView ( "view_1" ).
WithFilterFormula ( "AND({Field1}='value_1',NOT({Field2}='value_2'))" ).
WithSort ( sortQuery1 , sortQuery2 ).
ReturnFields ( "Field1" , "Field2" ).
InStringFormat ( "Europe/Moscow" , "ru" ).
Do ()
if err != nil {
// Handle error
}
recordsToSend := & airtable. Records {
Records : [] * airtable. Record {
{
Fields : map [ string ] any {
"Field1" : "value1" ,
"Field2" : true ,
},
},
},
}
receivedRecords , err := table . AddRecords ( recordsToSend )
if err != nil {
// Handle error
}
record , err := table . GetRecord ( "recordID" )
if err != nil {
// Handle error
}
À la mise à jour partielle un enregistrement
res , err := record . UpdateRecordPartial ( map [ string ] any { "Field_2" : false })
if err != nil {
// Handle error
}
À la mise à jour complète des enregistrements
toUpdateRecords := & airtable. Records {
Records : [] * airtable. Record {
{
Fields : map [ string ] any {
"Field1" : "value1" ,
"Field2" : true ,
},
},
{
Fields : map [ string ] any {
"Field1" : "value1" ,
"Field2" : true ,
},
},
},
}
updatedRecords , err := table . UpdateRecords ( toUpdateRecords )
if err != nil {
// Handle error
}
res , err := record . DeleteRecord ()
if err != nil {
// Handle error
}
Pour supprimer jusqu'à 10 enregistrements
records , err := table . DeleteRecords ([] string { "recordID1" , "recordsID2" })
if err != nil {
// Handle error
}
Inspiré par API Go Trello