updated github access mode

This commit is contained in:
Paul 2019-07-11 00:46:47 +02:00
parent 6640e8af17
commit 38ee9665f1
2 changed files with 1 additions and 3 deletions

View File

@ -46,7 +46,6 @@ func GetConfig(config *Config) error {
return err return err
} }
githubconfig.StarsPages = githubsection.Key("stars_pages").String()
githubconfig.PageNum, err = githubsection.Key("page_num").Int() githubconfig.PageNum, err = githubsection.Key("page_num").Int()
if err != nil { if err != nil {
return err return err
@ -85,7 +84,7 @@ func GetReposFromGitHub(config *Config) ([]GitHubRepo, error) {
var repo []GitHubRepo var repo []GitHubRepo
for num := 1; num <= config.githubconfig.PageNum; num++ { for num := 1; num <= config.githubconfig.PageNum; num++ {
url := fmt.Sprintf(config.githubconfig.StarsPages, config.githubconfig.AuthUsername, config.githubconfig.MaxPerPage, num) url := fmt.Sprintf("https://api.github.com/users/%s/starred?per_page=%d&page=%d", config.githubconfig.AuthUsername, config.githubconfig.MaxPerPage, num)
fmt.Println(url) fmt.Println(url)
fmt.Println("Getting GitHub starred repos") fmt.Println("Getting GitHub starred repos")

View File

@ -38,7 +38,6 @@ type GlobalConfig struct {
// GitHubConfig is the GitHub config // GitHubConfig is the GitHub config
type GitHubConfig struct { type GitHubConfig struct {
StarsPages string
MaxPerPage int MaxPerPage int
PageNum int PageNum int
AuthUsername string AuthUsername string