我正在尝试向我的控制器回发,但我无法得到任何回复。关于如何做到这一点的任何想法?
我从 Facebook 获得了一个 iframe 视图,如下所示:
<iframe src="https://www.facebook.com/plugins/registration?
client_id=164951196883222&
redirect_uri=http://global.iobffp.com/SIGN-IN/&
fields=name,birthday,gender,location,email,password"
scrolling="auto"
frameborder="no"
style="border: none"
allowtransparency="true"
width="390"
height="600">
</iframe>
我的控制器名为 GetFbRegistration,它是一个 jsonresult:
public JsonResult GetRegistration()
{
return Json("something", JsonRequestBehavior.AllowGet);
}
现在我如何进入这个控制器?