Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
github.com/deiwin/facebook
This is a work in progress. It is currently used by deiwin/luncher-api and only implements the functionality needed by that project.
Using $FACEBOOK_APP_SECRET
and $FACEBOOK_APP_ID
environment variables:
redirectURL := "http://your.domain.com/login/facebook/redirected"
scopes := []string{"manage_pages", "publish_actions", "whatever"}
facebookConfig := facebook.NewConfig(redirectURL, scopes)
However, if you wish, you can also manage your app secret and id differently:
facebookConfig := facebook.Config{
AppID: "your_app_id",
AppSecret: "your_app_secret",
RedirectURL: "http://your.domain.com/login/facebook/redirected",
Scopes: []string{"manage_pages", "publish_actions", "whatever"},
}
facebookAuthenticator := facebook.NewAuthenticator(facebookConfig)
// In an handler for the login request
session := "your_identifier_for_the_current_user_session"
redirectURL := facebookAuthenticator.AuthURL(session)
http.Redirect(w, r, redirectURL, http.StatusSeeOther)
// In an handler for the RedirectURL in the configuration.
// E.g "http://your.domain.com/login/facebook/redirected"
session := "your_identifier_for_the_current_user_session"
tok, err := facebookAuthenticator.Token(session, r)
if err != nil {
if err == facebook.ErrMissingState {
http.Error(w, "Expecting a 'state' value", http.StatusBadRequest)
} else if err == facebook.ErrInvalidState {
http.Error(w, "Invalid 'state' value", http.StatusForbidden)
} else if err == facebook.ErrMissingCode {
http.Error(w, "Expecting a 'code' value", http.StatusBadRequest)
}
http.Error(w, "", http.StatusInternalServerError)
}
api := fb.auth.APIConnection(tok)
user, err := api.Me()
if err != nil {
...
}
return user.ID
See the GoDoc for the API for more options.
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.