我有一项执行Google身份验证的任务。我的任务就像我应该使用谷歌按钮创建一个登录,然后单击它后,身份验证过程应该开始,并在下一个视图中显示我的详细信息。我写了这样的代码。
.PHONY: test
SOURCES := $(shell find "$(SOURCEDIR)" -name 'mod.mak')
test:
$(foreach file,$(SOURCES),$(if $(shell grep "aaabbb" "$(file)"),,@echo "WARNING Missing sequence in $(file)"))
并为按钮编写了类似
的功能let url = URL(string: "https://accounts.google.com/o/oauth2/v2/auth?scope=email%20profile&response_type=code&state=security_token%3D138r5719ru3e1%26url%3Dhttps://oauth2.example.com/token&redirect_uri=someuri:/oauth2redirect&client_id=myclient id")!
我不知道如何获取授权码,以便我可以将其发回以获取访问令牌。我不能按照谷歌提供的任何步骤整合我的谷歌登录也不应该使用任何豆荚。有人在做过吗?请帮帮我。