Skip to content
/ go-sfdc Public
forked from g8rswimmer/go-sfdc

go-sfdc is a library used to interface to Salesforce APIs using golang

License

Notifications You must be signed in to change notification settings

vtopc/go-sfdc

This branch is 25 commits ahead of, 1 commit behind g8rswimmer/go-sfdc:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ebd6ec7 · Mar 16, 2022

History

53 Commits
Aug 14, 2020
Aug 31, 2020
Aug 12, 2020
May 28, 2020
Aug 12, 2020
Aug 12, 2020
Aug 12, 2020
May 28, 2020
May 28, 2020
May 2, 2019
Aug 14, 2020
Mar 16, 2022
Jun 17, 2020
Aug 31, 2020
Aug 31, 2020
Jun 17, 2020
Jun 17, 2020
Oct 1, 2019
Oct 1, 2019
May 7, 2019
May 7, 2019

Repository files navigation

go-sfdc

Codacy Badge Codacy Badge Godoc Reference CI codecov

This is a golang library for interfacing with Salesforce APIs.

Getting Started

Installing

To start using go-sfdc, install GO and run go get

go get github.com/namely/go-sfdc/v3

This will retrieve the library.

Usage

To use this library, the following will need to be done.

Configuration

The configuration defines several parameters that can be used by the library. The configuration is used per session.

  • Credentials - this is an implementation of the credentials.Provider interface
  • Client - the HTTP client used by the APIs
  • Version - is the Salesforce version. Please refer to Salesforce documentation to make sure that APIs are supported in the version that is specified.

Example

package main

import (
	"github.com/namely/go-sfdc/v3"
	"github.com/namely/go-sfdc/v3/credentials"
)

var config = sfdc.Configuration{
	Credentials: credentials.NewPasswordCredentials(creds),
	Client:      salesforceHTTPClient,
	Version:     44,
}

License

GO-SFDC source code is available under the MIT License

About

go-sfdc is a library used to interface to Salesforce APIs using golang

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 99.9%
  • Makefile 0.1%