English 中文(简体)
iframe application facebook中的用户数据
原标题:access user data inside the iframe application facebook

如何从iframe应用程序中获取用户细节?

the problem is when i try to authenticate the user it authenticating and redirecting to the SITE not to facebook .

事实上,如果像需要利用图表复制件(任何其他方式/javascript )获取用户细节,则使用已签名的“要求”检查用户喜欢或不喜欢。 这样,就可以在数据库中节省费用。

This is my current code

if (isset($_REQUEST[ signed_request ]))
        {
            $encoded_sig = null;
            $payload = null;
            list($encoded_sig, $payload) = explode( . , $_REQUEST[ signed_request ], 2);
            $sig = base64_decode(strtr($encoded_sig,  -_ ,  +/ ));
            $data = json_decode(base64_decode(strtr($payload,  -_ ,  +/ ), true));
            if($data->page->liked)
            {
                //liked


                $questions = $this->functions->get_questions();

                if($questions["status"] ==TRUE)
                {
                    $questions["data"] = $questions["data"]->result_array();
                    $this->load->view("public/contest",$questions);


                }
                else
                {
                    echo "FALSE";
                }



            }
            else {

                //not liked

                $this->load->view("public/continue");



            }
        }

谢谢。

最佳回答

我建议使用Facebook SDK。 这使你能够得到用户的帮助,然后询问图象对一些基本信息的影响。 http://developers.facebook.com

问题回答

暂无回答




相关问题
selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.

热门标签