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 on how to do that?
Have you seen KFacebook, the KDE client for Facebook?
KdePlayground and KFacebook
They have a library for Facebook API and a Plasma Applet as well.
It's easier using jQuery, probably. But Qt4 can do the work, I think.
Use QNetworkAccessManager to access the web without an actual browser.
If you're interested in posting photos you can download one at
https://github.com/eamocanu/Facebook.Qt.APIs/downloads. I had to make this last year for a project.
use this its ready for Qt open source project for facebook
http://code.google.com/p/facebook-cpp-graph-api/
You can also use QHttp directly
Related
I'm using xamarin forms. All I need to do is to open Image full sized with zooming and dragging. I know, that on Android I could do it using another app, "Gallery" for example.
But what should I do when developing on cross platform apps? Maybe there is a lib, that can do such things?
Take a look on ImageEdit plugin. It supports Xamarin.iOS and Xamarin.Android platforms.
This plugin will enable you to manipulate(resize,crop,rotate,monochrome) a image(png,jpg).
I've found the solution for my issue a long time ago, but forget about the answer.
For me the solution was to use the Stormlion Photo Browser. It has some nice functionality, and works with local images. For Uri you just need to use "file:///your_path_to_image" and that's it!
I want to show some part of my college site into my app (like news part only). Site is developed using JavaScript. Tell me how could I achieve this. I know Java quite well.
use jsoup and httpclient that's all you need
If you need javascript support, HtmlUnit is a very good solution for a headless browser. There also exists a framework that allows you to parallelize downloads over proxies using that: https://github.com/subes/invesdwin-webproxy
I would to know if is posssible create a APP in Java for web without to need to install the plugin. For example I to use Google Earth Libraries for Java and show the Google Earth in a web page without the user to need install the plugin. It's possible? If yes, What I need to do?
I am questioning, because the plugin have a lot of BUGs. For example Suddenly the plugin stopped work in my Mac's Chrome. I am with this problem about 5 months.
Thanks
No, It is not possible. You must use the Javascript API. There was an COM API but now is obsolete (http://googlegeodevelopers.blogspot.com.es/2010/08/sunset-for-google-earth-com-api.html).
I'm using Google Earth API with Chrome in Mac and yes it has some bugs, but I think it's usable.
I am trying to use the facebook API provided by Nokia Developer:
http://www.developer.nokia.com/Community/Wiki/Facebook_Connect
I need to know what library or files should i include to connect to this API. And if you can provide me with any important guidelines it would be great.
Thanks,
Did you actually read the page you linked to? The first line has a link to the download location and the entire page is full of examples of how to use the API.
However, if you did follow the download link you'd see this:
Facebook is deprecating the old REST api upon which this library is
based on. The new api is called facebook graph api and that should be
used, the rest api breaks all the time so its not a good idea to use
it. Please look at http://gitorious.org/qfacebook for a Qt
implementation of the new facebook graph API
Which makes your question somewhat irrelevant.
With Qt 5, you can now use the V-Play Facebook Qt Plugin.
It wraps the native Facebook SDK around a QML item and thus has the advantage that native login functionality and the whole Facebook Graph API is available cross-platform.
There is a free sample, documentation and tutorials available here: http://plugins.v-play.net/plugins/facebook/
I would like to supply an username(mail address) and password to an API method and login to Facebook. Is it possible with the special swc library to access the API in this manner? If not, can you give me some hints on how to do it using ExternalInterface and JS?
Thank you!
there is a library called actionscript facebook api, it is hosted on google code.
The last time I have used it was to run an example for my students and it worked but it was about 4-5 months ago.
** from just browsing around over there again I saw it was updated and they have examples posted.
I think this will help you.
You will want to use the com.facebook.utils.FacebookSessionUtil to login.
Here is some code examples on how to achieve what you are wanting.