我正在尝试登录来与Facebook反应,我们正在使用此代码 https://gist.github.com/ronit-mukherjee/3e933509643a4ab4e80452bb05c1a073。 但是,我担心的是,一旦用户成功登录,如何将用户重定向到某个页面。据我了解,它也必须被列入白名单,但问题是如何重定向。另一件事是,我们也需要这些数据 以及响应中的accessToken。
答案 0 :(得分:0)
尝试使用此库void Main()
{
var cwd = Util.MyQueriesFolder;
var args = new[] {
"-noheader",
$"-work:{cwd}"
};
Console.SetOut(new NoDisposeTextWriter(Console.Out));
Console.SetError(new NoDisposeTextWriter(Console.Error));
new AutoRun(Assembly.GetExecutingAssembly()).Execute(args);
}
public class Foo{...}
[TextFixture]
public class TestFoo{...}
,您的代码将更加简洁。成功登录后,您应该执行以下操作,只需将该数据发送到您的API并使用react-facebook-login
导航到另一个页面:
this.props.history.push('/');