summaryrefslogtreecommitdiff
path: root/examples
Commit message (Collapse)AuthorAgeFilesLines
* Remove oauth1 proxyGünther Wagner2022-06-196-508/+1
| | | | | | | OAuth1 is discouraged to be used nowadays. Only flickr is the only service we used in the past which needed oauth1. They probably won't update their API to OAuth2 and therefore it was dropped in GOA. Following this example, dropping OAuth1 support too for librest.
* demo: add status to oauth buttonsgwagner/demo-oauth-statusGünther Wagner2022-02-141-3/+56
|
* demo: Fix compilation with libsoup2Bastien Nocera2022-02-021-0/+4
| | | | | | | | | | | | librest/examples/demo/demo-rest-page.c: In function ‘on_send_clicked’: librest/examples/demo/demo-rest-page.c:498:24: error: too few arguments to function ‘soup_logger_new’ 498 | SoupLogger *logger = soup_logger_new (SOUP_LOGGER_LOG_BODY); | ^~~~~~~~~~~~~~~ In file included from /usr/include/libsoup-2.4/libsoup/soup.h:31, from librest/examples/demo/demo-rest-page.c:23: /usr/include/libsoup-2.4/libsoup/soup-logger.h:59:13: note: declared here 59 | SoupLogger *soup_logger_new (SoupLoggerLogLevel level, | ^~~~~~~~~~~~~~~
* demo: added desktop fileGünther Wagner2022-02-013-0/+29
|
* demo: add info-popovers for oauth authenticationGünther Wagner2022-02-011-2/+24
|
* demo: add authentication methodsGünther Wagner2022-02-0113-12/+1255
|
* demo: add about dialogGünther Wagner2022-02-012-1/+55
|
* Update org.gnome.RestDemo source to point at Gitlabbaarkerlounger2022-01-191-1/+1
|
* examples: rest demo gui applicationGünther Wagner2022-01-1811-0/+566
|
* OAuth2 Pkce WorkflowGünther Wagner2022-01-123-13/+149
|
* Port to the Meson build systemNiels De Graef2021-10-211-0/+25
| | | | | | | | | | | | | | | | | | | See the [Meson website] for a full reference. To build, test and/or install the librest library, you essentially need the following commands: ``` $ meson build $ ninja -C build $ meson test -C build $ ninja -C build install ``` For the GNOME initiative, see https://wiki.gnome.org/Initiatives/GnomeGoals/MesonPorting [Meson website]: http://mesonbuild.com/ https://gitlab.gnome.org/GNOME/librest/merge_requests/1
* examples: Make c89 compatibleTimm Bäder2016-07-142-3/+3
|
* Adapt tests and examples to API changeTimm Bäder2016-06-202-34/+31
|
* Remove fireeagle exampleTimm Bäder2016-06-202-93/+1
| | | | Quote from wikipedia: "Fire Eagle has closed as of February 2013".
* Remove all GLIB_CHECK_VERSION usesTimm Bäder2016-06-168-35/+3
| | | | Where the checked version is < 2.36, which we now require
* Switch Flickr examples to https://Florian Weimer2015-03-172-2/+2
| | | | http:// does not work anymore.
* tests: Remove more unused variables/codeChristophe Fergeau2014-09-031-1/+0
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=735921
* tests: Don't call g_type_init() on newer glibChristophe Fergeau2014-09-039-0/+18
| | | | | | This is deprecated and causes a compile warning https://bugzilla.gnome.org/show_bug.cgi?id=735921
* Add example for twitter image uploadTimm Bäder2013-02-193-1/+105
| | | | The examples creates a new tweet and also uploads a simple image
* Drop obsolete g_thread_init()Martin Pitt2012-06-167-7/+0
| | | | | | | | | | Since version 2.2 g_type_init() initializes also the thread system so g_thread_init() is not required anymore. It is deprecated since glib 2.31. Bump glib requirement accordingly. https://bugzilla.gnome.org/show_bug.cgi?id=650061
* build: Link examples against gthread explicitlyEmmanuele Bassi2011-10-261-2/+2
|
* examples: Fix compiler warningsRob Bradford2010-09-062-3/+3
|
* examples: Add a demo for the continuous streamed modeRob Bradford2010-09-022-1/+95
|
* post-twitter: use the correct URL endpointRoss Burton2010-08-171-2/+2
|
* flickr-proxy: Allow specifying the permissions required in the login urlRob Bradford2010-06-161-1/+1
|
* get-flickr-favorites.c: add missing licenseRoss Burton2010-05-141-0/+22
|
* examples: add an example to sent a user a shout on Last.fmRoss Burton2010-05-142-1/+148
|
* Remove FacebookProxyRoss Burton2010-05-072-200/+1
|
* Fix compile warnings with const errorRoss Burton2009-10-122-2/+2
|
* Split the Facebook and Flickr backends to librest-extrasRoss Burton2009-10-083-3/+3
|
* Update for the versioned libraryRoss Burton2009-10-081-1/+1
|
* Fix formatting and style for the twitter testRoss Burton2009-08-041-5/+4
|
* Fix formattingRoss Burton2009-08-041-2/+1
|
* Use flickr_proxy_is_successful in the flickr exampleRoss Burton2009-08-041-12/+3
|
* Add better Flickr exampleRoss Burton2009-08-042-29/+78
|
* Use the new APIs and clean up get-fireeagle-locationRoss Burton2009-08-031-13/+29
|
* Rename test-oauth to get-fireeage-locationRoss Burton2009-08-032-2/+2
|
* Update post-twitter to reflect the new APIRoss Burton2009-08-031-3/+1
|
* Add an example which posts to Twitter (OAuth 1.0a)Ross Burton2009-07-312-1/+85
|
* Display the friend's status updatesRoss Burton2009-05-241-11/+86
|
* Fetch status updates in the facebook testRoss Burton2009-05-241-4/+26
|
* Add facebook test caseRoss Burton2009-05-242-1/+103
|
* Update commentRoss Burton2009-05-211-1/+1
|
* Fix test-oauth to work with the new APIRoss Burton2009-05-211-4/+6
|
* Add Flickr test caseRoss Burton2009-05-192-1/+92
|
* Use g_print instead of g_debugRoss Burton2009-05-151-2/+2
|
* Don't crash dump-xml if the document cannot be parsedRoss Burton2009-05-151-2/+6
|
* Update OAuth example and test to new APIRoss Burton2009-04-271-3/+3
|
* Add a example to dump a XML fileRoss Burton2009-04-142-1/+114
|
* Remove the unused mainloop in the OAuth testRoss Burton2009-04-071-4/+0
|