在从 Golang Buffalo 网络应用程序发送推文时设置 CSRF 令牌时遇到问题
Trouble setting CSRF token in sending a tweet from a Golang Buffalo webapp
我在尝试构建 Go Buffalo 网络应用程序时遇到问题。我基本上在前端有一个标准表单,单击该表单应该会向用户推特帐户发送一条推文。
这样做时出现“500: CSRF Not found”。
我正在使用 Go Buffalo framework for the web app and go-twitter 来处理 twitter API.
我对 CSRF 几乎没有经验,所以希望有人能在这个具体案例中帮助我。
tweet.HTML:
<h3>Tweet tweet!</h3>
<form action="/tweet" method="POST">
<div class="form-group">
<label for="tweet">Your tweet:</label>
<input type="text" name="tweet" class="form-control" id="tweet" placeholder="Tweet body"
value="">
</div>
<button type="submit" class="btn btn-primary">Send</button>
</form>
路由器:
app.POST("/tweet", SendHandler)
Tweet.go(包含SendHandler函数):
package actions
import (
"fmt"
"log"
"os"
"twitapp/twitter"
"github.com/gobuffalo/buffalo"
)
var creds = twitter.Credentials{
AccessToken: os.Getenv("ACCESS_TOKEN"),
AccessTokenSecret: os.Getenv("ACCESS_TOKEN_SECRET"),
APIKey: os.Getenv("API_KEY"),
APISecret: os.Getenv("API_SECRET"),
}
type TweetForm struct {
TweetBody string
}
// TweetHandler is the handler for the Tweet page
func TweetHandler(c buffalo.Context) error {
return c.Render(200, r.HTML("tweet.html"))
}
//SendHandler Function used by tweet.html to send the tweet/
//Takes in variables from twitter/server.go
func SendHandler(c buffalo.Context) error {
var form TweetForm
body := form.TweetBody
fmt.Printf("%+v\n", creds)
//Gets the client from the twitter package
client, err := twitter.GetClient(&creds)
if err != nil {
log.Println("Error getting Twitter Client")
log.Println(err)
}
//Sending the actual tweet. Body from the form
tweet, resp, err := client.Statuses.Update(body, nil)
if err != nil {
log.Println(err)
}
log.Printf("%+v\n", resp)
log.Printf("%+v\n", tweet)
return c.Redirect(302, "/tweet/confirm")
}
还有一个从 SendHandler 函数调用的 GetClient 函数,但我无法想象问题出在那里,因为它是为调用设置 Twitter 客户端的标准代码。
在正确的方向上欣赏任何 help/pointing。我目前对 CSRF 的了解还不够,无法将其应用于此。
CSRF 是 Buffalo 试图保护您免受的一种攻击。
为此,它使用 CSRF middleware 检查每个可以改变您的数据的请求(例如 POST、PUT、DELETE 等)并查找特定的令牌。 在您的用例中,Buffalo 希望您发送一个名为 "authenticity_token" 的输入字段,其中包含 CSRF 中间件放入上下文中的值。您可以在上下文中的相同 "authenticity_token" 键中找到此值。
另一种解决方案是使用标签助手 (https://github.com/gobuffalo/tags) library which generates this expected input for you: https://github.com/gobuffalo/tags/wiki/Form
在查看了 GoBuffalo 文档,特别是表单页面的 THIS 部分之后,我所要做的就是将这行代码添加到我的表单 (tweet.html) 中以处理真实性令牌。
<input name="authenticity_token" type="hidden" value="<%= authenticity_token %>">
我在尝试构建 Go Buffalo 网络应用程序时遇到问题。我基本上在前端有一个标准表单,单击该表单应该会向用户推特帐户发送一条推文。 这样做时出现“500: CSRF Not found”。 我正在使用 Go Buffalo framework for the web app and go-twitter 来处理 twitter API.
我对 CSRF 几乎没有经验,所以希望有人能在这个具体案例中帮助我。
tweet.HTML:
<h3>Tweet tweet!</h3>
<form action="/tweet" method="POST">
<div class="form-group">
<label for="tweet">Your tweet:</label>
<input type="text" name="tweet" class="form-control" id="tweet" placeholder="Tweet body"
value="">
</div>
<button type="submit" class="btn btn-primary">Send</button>
</form>
路由器:
app.POST("/tweet", SendHandler)
Tweet.go(包含SendHandler函数):
package actions
import (
"fmt"
"log"
"os"
"twitapp/twitter"
"github.com/gobuffalo/buffalo"
)
var creds = twitter.Credentials{
AccessToken: os.Getenv("ACCESS_TOKEN"),
AccessTokenSecret: os.Getenv("ACCESS_TOKEN_SECRET"),
APIKey: os.Getenv("API_KEY"),
APISecret: os.Getenv("API_SECRET"),
}
type TweetForm struct {
TweetBody string
}
// TweetHandler is the handler for the Tweet page
func TweetHandler(c buffalo.Context) error {
return c.Render(200, r.HTML("tweet.html"))
}
//SendHandler Function used by tweet.html to send the tweet/
//Takes in variables from twitter/server.go
func SendHandler(c buffalo.Context) error {
var form TweetForm
body := form.TweetBody
fmt.Printf("%+v\n", creds)
//Gets the client from the twitter package
client, err := twitter.GetClient(&creds)
if err != nil {
log.Println("Error getting Twitter Client")
log.Println(err)
}
//Sending the actual tweet. Body from the form
tweet, resp, err := client.Statuses.Update(body, nil)
if err != nil {
log.Println(err)
}
log.Printf("%+v\n", resp)
log.Printf("%+v\n", tweet)
return c.Redirect(302, "/tweet/confirm")
}
还有一个从 SendHandler 函数调用的 GetClient 函数,但我无法想象问题出在那里,因为它是为调用设置 Twitter 客户端的标准代码。 在正确的方向上欣赏任何 help/pointing。我目前对 CSRF 的了解还不够,无法将其应用于此。
CSRF 是 Buffalo 试图保护您免受的一种攻击。
为此,它使用 CSRF middleware 检查每个可以改变您的数据的请求(例如 POST、PUT、DELETE 等)并查找特定的令牌。 在您的用例中,Buffalo 希望您发送一个名为 "authenticity_token" 的输入字段,其中包含 CSRF 中间件放入上下文中的值。您可以在上下文中的相同 "authenticity_token" 键中找到此值。
另一种解决方案是使用标签助手 (https://github.com/gobuffalo/tags) library which generates this expected input for you: https://github.com/gobuffalo/tags/wiki/Form
在查看了 GoBuffalo 文档,特别是表单页面的 THIS 部分之后,我所要做的就是将这行代码添加到我的表单 (tweet.html) 中以处理真实性令牌。
<input name="authenticity_token" type="hidden" value="<%= authenticity_token %>">