I have a problem when I try to login to facebook mobile.
I develop program on mobile with Qt QML.
At first, I use this code for a while and it worked fine. But a few days ago, it stopped working as usual.
So, I tried to write a very simple code sample, just for testing, and it gave me a same error.
This is my simple code:
import QtQuick 1.0
import QtWebKit 1.0
Rectangle {
width: 360
height: 640
WebView {
id: web
//anchors.fill: parent
preferredHeight: 640
preferredWidth: 360
url: "http://www.facebook.com/dialog/oauth/?scope=email,user_birthday&client_id=MY_APP_ID&redirect_uri=http://www.gimme5.co.cc/login_success.html&response_type=token&display=touch"
}
}
I already replace the app id when I run it.
It gave me an error in a pink square like this:
This page contains the following errors
error on line 2 at column 212 : Expected ';' but got '='
Below is a rendering of the page up to
So, what should I do?