• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

demos/H03-Sep-2020-2,8152,065

docs/reference/H03-Sep-2020-3,6643,506

gdata/H03-Sep-2020-135,61085,832

po/H03-Sep-2020-37,12431,565

AUTHORSH A D03-Sep-202041 21

COPYINGH A D03-Sep-202025.8 KiB505418

HACKINGH A D03-Sep-202010.9 KiB217135

NEWSH A D03-Sep-202071.9 KiB1,6851,507

READMEH A D03-Sep-20201.8 KiB6547

libgdata.doapH A D03-Sep-20201.3 KiB1918

meson.buildH A D03-Sep-20205.4 KiB190153

README

1libgdata
2========
3
4libgdata is a GLib-based library for accessing online service APIs using the
5GData protocol --- most notably, Google's services. It provides APIs to access
6the common Google services, and has full asynchronous support.
7
8See the test programs in gdata/tests/ for simple examples of how to use the
9code.
10
11libgdata is API and ABI stable.
12
13Dependencies
14============
15
16 • glib-2.0 ≥ 2.44.0
17 • libxml-2.0
18 • gio-2.0 ≥ 2.44.0
19 • libsoup-2.4 ≥ 2.42.0
20 • liboauth ≥ 0.9.4
21 • json-glib ≥ 0.15.0
22
23If compiling with --enable-gnome (for GNOME support):
24 • gcr-base-3
25 • goa-1.0 ≥ 3.8
26
27If compiling the demos:
28 • gtk+-3.0 ≥ 2.91.2
29
30Environment variables
31=====================
32
33If the environment variable LIBGDATA_DEBUG is set to one of the following
34values, libgdata will give debug output (at various levels):
35 0: Output no debug messages or network logs
36 1: Output debug messages, but not network logs
37 2: Output debug messages and network traffic headers
38 3: Output debug messages and full network traffic logs, redacting usernames,
39    passwords and auth. tokens
40 4: Output debug messages and full network traffic logs, and don't redact
41    usernames, passwords and auth. tokens
42If LIBGDATA_DEBUG is unset, no debug output will be produced.
43
44So, to debug a program which uses libgdata, run it from a terminal with the
45following command:
46
47$ LIBGDATA_DEBUG=3 ./my-program-name &> libgdata.log
48
49Deprecation guards
50==================
51
52If LIBGDATA_DISABLE_DEPRECATED is defined when compiling against libgdata, all
53deprecated API will be removed from included headers.
54
55Licensing
56=========
57
58libgdata is licensed under the LGPL; see COPYING for more details.
59
60Contact
61=======
62
63Philip Withnall <philip@tecnocode.co.uk>
64https://wiki.gnome.org/Projects/libgdata
65