我在尝试构建的 Go Buffalo Web 应用程序时遇到问题。我基本上在前端有一个标准表单,当点击它时,应该向用户的 Twitter 帐户发送一条推文。这样做时,我得到“500:未找到 CSRF”。我正在使用 Web 应用程序的 Go Buffalo框架和go-twitter来处理 twitter API。
我对 CSRF 几乎没有经验,所以希望有人能在这个特定情况下帮助我。
推文.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 客户端的标准代码。感谢任何帮助/指向正确的方向。我目前没有足够的 CSRF 知识将其应用于此。