Most complete c++ facebook library [closed] - c++

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed last month.
Improve this question
I am looking for a c++ (or C) library to access facebook. I found some libraries doing some things, but they do not seams to be complete.
So, what is the most complete c++ library to access facebook?
EDIT
Found so far :
1) C++ Facebook REST Client
2) facebook-cpp-graph-api

From my perspective there is no true complete library as of late for Facebook in c++
best to find the ones you need as you go.
Though I recommend this Facebook api: facebook graph api by meir yanovich

Related

Where can I find API Documentation containing headers classes and methods in MFC VC++? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I want to find Java API like documentation for MFC C++ classes. Where we can get clear information on headers associated,data members and methods for MFC Library. MSDN doesn't look helpful since it doesn't contain information on which header need to be in linked.
Can anyone help me on this.
It says the header under Requirements if you scroll down a bit, for example:
https://msdn.microsoft.com/en-us/library/za93adby.aspx
Posting this as an answer as well so you can accept and people can spend their time on other questions.

Open protobuf service [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Do you know of a robust, free, ideally open source, web service that uses protobuf.
I maintain an Android library for networking and I write samples for every module. For instance, the JSON modules use Github apis to get some data from the network and illustrate the client library usage.
Do you know an equivalent for protobuf ?
Thanks in advance.
Your protobuf module could use this api to access from the android market place:
https://code.google.com/p/android-market-api/

Web services which offer free data in JSONP format [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
For example, Google provides dictionary definitions for English words in JSONP format from the following URL:
http://www.google.com/dictionary/json?callback=a&sl=en&tl=en&restrict=pr,de&client=te&q=internet
Do you know other JSONP sources of interesting free information on the Internet, which could be useful to create mash-up webs?
Thanks!
Check out Programmableweb's API directory
https://www.programmableweb.com/apis/directory
I believe they are trying to be the Git Hub of APIs. They have over 13,000 APIs in their registry.
Should be very easy to find sources to mash up. =)

Self Documenting APIs built on Django-Tastypie [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
Im using django-tastypie and I'm very happy with it. But I really want to get the self documenting api feature from Django Rest Framework.
What solutions exist (or have people built) to get this kind of auto generated documentation that Django Rest Framework, but from a TastyPie based API ?
I haven't had a chance to use it myself but django-tastypie-swagger looks promising (https://github.com/concentricsky/django-tastypie-swagger/). Swagger itself is a great choice for API documentation (https://developers.helloreverb.com/swagger/).

Native C++ HTTPS REST call with certificate validation [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
What library is the best to use for the purpose? Target platform is Linux.
Difficult to tell the best, but i used Qt (QNetworkAccessManager) and a Qt JSON Parser with success.
I picked up libcurl thus it is enforced with SSL certificate validation. Regarding to REST, I am able to send GET and POST requests also. However it is C but not C++ library. But it does not make a big difference for me because the syntax is pretty clear and there are lot of examples.