2013-12-11

‎Web services:

← Older revision

Revision as of 01:10, 11 December 2013

(2 intermediate revisions by one user not shown)

Line 7:

Line 7:

 

# support specific to Twitter: to share Journal entries as tweets and to retrieve comments on those entries from Twitter (tch);

 

# support specific to Twitter: to share Journal entries as tweets and to retrieve comments on those entries from Twitter (tch);

 

# support for uploading Journal entries to a local server (tch).

 

# support for uploading Journal entries to a local server (tch).

 

+

# [https://github.com/ignaciouy/upload-webservice support for uploading files to PutLocker] (ignacio)

 

 

 

[[File:Webservices.png]]                [[File:Configpastebin.bmp]]

 

[[File:Webservices.png]]                [[File:Configpastebin.bmp]]

Line 71:

Line 72:

 

            ├── __init__.py

 

            ├── __init__.py

 

            └── service.py

 

            └── service.py

 

+

</pre>

 

+

 

+

== PutLocker ==

 

+

<!-- * tar file: [http://people.sugarlabs.org/ignacio/sugarupload.tar.gz] -->

 

+

* git repo: [https://github.com/ignaciouy/upload-webservice]

 

+

 

+

You should end up with the following directory structure:

 

+

<pre>

 

+

~/.sugar/default/extensions/webservice/

 

+

├── __init__.py

 

+

└── sugarupload

 

+

    ├── account.py

 

+

    ├── icons

 

+

    │   └── sugarupload.svg

 

+

    ├── __init__.py

 

+

    └── sugarupload

 

+

        ├── grestful

 

+

        │   ├── decorators.py

 

+

        │   ├── errors.py

 

+

        │   ├── helpers.py

 

+

        │   ├── __init__.py

 

+

        │   └── object.py

 

+

        ├── __init__.py

 

+

        └── sugarupload.py

 

+

 

+

~/.sugar/default/extensions/cpsection/

 

+

├── __init__.py

 

+

└── webaccount

 

+

    ├── __init__.py

 

+

    └── services

 

+

        ├── __init__.py

 

+

        └── sugarupload

 

+

            ├── __init__.py

 

+

            └── service.py

 

+

 

</pre>

 

</pre>

 

 

Show more