Skip to content

Latest commit

 

History

History
100 lines (64 loc) · 2.55 KB

README.md

File metadata and controls

100 lines (64 loc) · 2.55 KB

githubrss:A github notification (starred, follower, followed) RSS feed in Golang

GoDoc Go

Github RSS will help you to generate RSS feed string of specific user ID with (Starred, Following, Followed).

You can use this to write a web service to host specific RSS for other services like IFTTT

Installation and Usage

Install

go get github.com/kkdai/githubrss

Usage

package main

import (
    "github.com/kkdai/githubrss"
    "fmt"
)

func main() {
	g := NewGithubRss("kkdai")
	//Get latest 5 starred RSS
	ret, err := g.GetStarred(5)

	if err != nil {
		fmt.Println("Not get starred response:", err)
	}

	fmt.Println("Starred RSS:", ret)


	//Get latest 5 follower RSS
	ret, err = g.GetFollower(5)

	if err != nil {
		fmt.Println("Not get follower response:", err)
	}

	fmt.Println("Follower RSS:", ret)


	//Get latest 5 following RSS
	ret, err = g.GetFollowing(5)

	if err != nil {
		fmt.Println("Not get following response:", err)
	}

	fmt.Println("Following RSS:", ret)
}

Inspired By

Project52

It is one of my project 52.

License

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.