我有Facebook页面,我是该页面的管理员.现在我想使用Graph API从我的朋友列表中为某个人分配管理员角色.
在文档中,我发现如何列出一个pege ussing accounts parametar的管理员,但我找不到如何添加一个作为页面管理员.
先感谢您.
我用这个代码
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
Run Code Online (Sandbox Code Playgroud)
将所有请求重定向到HTTPS,这没关系.
现在我想要同样的东西,除了一个文件index810.php
我这样写的时候
RewriteCond %{HTTPS} off
RewriteCond %{REQUEST_URI} !^ index810.php
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
Run Code Online (Sandbox Code Playgroud)
我得到太多的重定向,任何建议.
先感谢您