• Stars
    star
    22
  • Rank 1,013,152 (Top 21 %)
  • Language
    Go
  • License
    MIT License
  • Created about 9 years ago
  • Updated over 8 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A Go library for Snapchat's API

ghost

A Go library for Snapchat's API

Installation

$ go get github.com/neuegram/ghost

This library has been updated to keep up with Snapchat's changes. To use this library you need to signup to use the Casper API.

Register a casper account, and you can start using this library.

Warning

This library is in alpha at the moment, not everything has been tested (yet) but the basics still work. Feel free to contribute, this library is actively maintained and is making fast progress! :)

Use at your own risk.

Examples

Fetch all updates

package main

import (
	"fmt"
	"github.com/neuegram/ghost"
)

func main() {
	casperClient := ghost.NewRawCasperClient("yourapikey","yourapisecret")
	casperClient.Username = "yoursnapchatusername"
	casperClient.Password = "yoursnapchatpassword"
	casperClient.Debug = false
	snapchat := ghost.NewAccount("[email protected]", "yourgmailpassword", casperClient, false)
	err := snapchat.Login()
	if err != nil {
		fmt.Println(err)
	}
	fmt.Println(snapchat.Updates())
}

Sending a Snap

package main

import (
	"fmt"
	"github.com/neuegram/ghost"
)

func main() {
	casperClient := ghost.NewRawCasperClient("yourapikey","yourapisecret")
	casperClient.Username = "yoursnapchatusername"
	casperClient.Password = "yoursnapchatpassword"
	casperClient.Debug = false
	snapchat := ghost.NewAccount("[email protected]", "yourgmailpassword", casperClient, false)
	err := snapchat.Login()
	mediaID, err := snapchat.Upload("yoursnap.jpg")
	result, err := snapchat.Send(mediaID, []string{"teamsnapchat"}, 10)
	if err != nil {
		fmt.Println(err)
	}
	fmt.Println(result)
}

Snapchat Registration CLI

You can register a Snapchat account through the CLI.

Run $ go get github.com/neuegram/ghost/srcli

Run $ srcli -help for more details.

Special Thanks

If you would like to contribute, you can take a look at the documentation here and here.

Extra Special Thanks πŸ’©

To whoever at Snapchat came up with this header:

β€œX-Snapchat-Notice: Snapchat Private APIs - Unauthorized use is prohibited.”

And to whoever at Snapchat came up with this message:

We've noticed that you're using a third-party application to access Snapchat, putting yourself (and possibly your friends) at risk. Please change your password and stop using third-party applications when you access Snapchat.

License

This project is licensed under the MIT license, see the LICENSE file for more details.