Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Qt is a cross-platform application development framework widely used for the development of GUI programs.

learn more… | top users | synonyms

0
votes
0answers
26 views

How to specify a locale to Facebook OAuth Dialog with QWebView of QT?

I'm trying to get my users to log into Facebook using the OAuth Dialog.I load and show the oauth dialog with QWebview about http://www.facebook.com/dialog/oauth?... I Specify a locale ...
0
votes
1answer
160 views

QWebView doesn't perform redirection when loading Facebook dialog

I have a sort of Facebook client written with a help of Qt. It uses QWebView to access Facebook feed dialog. Facebook api redirects to the login page and after authorization allows to post a message. ...
0
votes
0answers
100 views

Facebook App Login Giving Error on QWebView

I was trying to create a facebook based login for my desktop based application using this as a reference. So, I tried to load the url ...
1
vote
2answers
244 views

Sharing image on facebook and twitter from QtQuick application

I have a nokia Qt application (QtQuick QML App) that should share an image on facebook and twitter . is there is any way to do that ?
0
votes
0answers
173 views

add facebook/twitter to QT application

I am developing an application on QT that edits photos. After uploading a photo, it is possible to change it by applying one of the filters and after I would like to give a possibility to upload a ...
0
votes
2answers
379 views

Facebook Wall (timeline) post from Qt Symbian 4.7

I want to make a short app that can post on my Facebook wall(timeline). My app is based on webview component (QWebView) to obtain the access token for publish stream I can take the access token but ...
1
vote
1answer
278 views

QT GET Request Response different from the one you get from an ordinary browser

I'm trying to run a multiquery using the QT framework. My query looks like this {"query1":"SELECT uid2 FROM friend WHERE uid1=me()","query2":"SELECT uid, name FROM user WHERE uid in(SELECT uid2 FROM ...
0
votes
1answer
274 views

send facebook message using mobile application on Qt

I have a QML application and I am using functions in Javascript to "communicate" with Facebook Graph API. I have succeeded to post on my friend's wall but Now I want to send him a message to his ...
1
vote
1answer
522 views

Facebook authentication (display=touch or display=wap) using Qt

I'm currently developing an app for nokia smart phone mobile using "display=touch", however the fb oauth dialog doesn't render properly on QWebview nor QML Webview. When I use "display=wap", the fb ...
1
vote
2answers
966 views

Error when login in Facebook Mobile

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 ...
4
votes
1answer
642 views

Is there any way QML can load data using Facebook Javascript SDK?

I am trying to get QML to interact with FB graph API using FB Javascript SDK. I'm loading this HTML inside a WebView element: html: "<script>console.log(\"This is in WebKit!\"); ...
2
votes
2answers
768 views

how to convert this date:2011-02-10T07:18:04+0000 to unix timestamp in Qt

Im using Facebook Graph Api , and the in the paging parameter it returns this string after i decode it from 2011-02-10T06%3A52%3A02%2B0000 to 2011-02-10T07:18:04+0000 and now i like to convert the ...
0
votes
1answer
2k views

facebook api over rest getting Incorrect signature <error_code> 104

Hello all im trying to send rest api Users.getLoggedInUser i have all the secret session and all the Authenticationi made according to this site : ...
0
votes
1answer
493 views

facebook authentication using qt

can authentication for facebook be done without a web browser in qt? the way i want to authenticate is to enter a username and password in text boxes and pass it as parameters in the url? is it ...
2
votes
5answers
3k views

Qt client for Facebook

I would like to use Facebook API (http://wiki.developers.facebook.com/index.php/API) in my Qt Application. I don't want to use WebKit. Is it possibile to use QNetwork only? Is there any example ...