├── .gitignore ├── LICENSE.txt ├── README.md ├── docs ├── using-joomla-framework │ ├── add-joomla-articles-from-streamed-csv-url │ │ └── README.md │ ├── edit-joomla-articles-from-streamed-csv-url │ │ └── README.md │ ├── smart-add-edit-random-defined-sites-github-graphql │ │ └── README.md │ ├── smart-add-edit-to-multiple-sites-airtable-api │ │ └── README.md │ ├── smart-add-edit-to-multiple-sites-from-csv-url │ │ └── README.md │ ├── smart-add-edit-with-subform-custom-field-support-from-streamed-csv-url │ │ └── README.md │ ├── smart-add-or-edit-joomla-articles-from-streamed-csv-url │ │ └── README.md │ └── turn-your-top-5-favorite-movies-into-joomla-articles-omdb-api │ │ └── README.md └── using-raw-php │ ├── add-joomla-articles-from-streamed-csv-url │ └── README.md │ ├── edit-joomla-articles-from-streamed-csv-url │ └── README.md │ ├── smart-add-edit-random-defined-sites-github-graphql │ └── README.md │ ├── smart-add-edit-to-multiple-sites-airtable-api │ └── README.md │ ├── smart-add-edit-to-multiple-sites-from-csv-url │ └── README.md │ ├── smart-add-edit-with-subform-custom-field-support-from-streamed-csv-url │ └── README.md │ ├── smart-add-or-edit-joomla-articles-from-streamed-csv-url │ └── README.md │ └── turn-your-top-5-favorite-movies-into-joomla-articles-omdb-api │ └── README.md ├── media ├── data │ └── sample-data.csv └── images │ ├── screenshot-joomla-webservices-airtable-api-mashup.png │ ├── screenshot-joomla-webservices-from-streamed-csv-url.png │ ├── screenshot-joomla-webservices-github-graphql-api-mashup.png │ └── screenshot-joomla-webservices-omdb-movie-api-mashup.png ├── using-joomla-framework └── .gitkeep └── using-raw-php ├── add-joomla-articles-from-streamed-csv-url.php ├── edit-joomla-articles-from-streamed-csv-url.php ├── smart-add-edit-random-defined-sites-github-graphql.php ├── smart-add-edit-to-multiple-sites-airtable-api.php ├── smart-add-edit-to-multiple-sites-from-csv-url.php ├── smart-add-edit-with-subform-custom-field-support-from-streamed-csv-url.php ├── smart-add-or-edit-joomla-articles-from-streamed-csv-url.php └── turn-your-top-5-favorite-movies-into-joomla-articles-omdb-api.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreelise/j4x-api-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreelise/j4x-api-examples/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreelise/j4x-api-examples/HEAD/README.md -------------------------------------------------------------------------------- /docs/using-joomla-framework/add-joomla-articles-from-streamed-csv-url/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreelise/j4x-api-examples/HEAD/docs/using-joomla-framework/add-joomla-articles-from-streamed-csv-url/README.md -------------------------------------------------------------------------------- /docs/using-joomla-framework/edit-joomla-articles-from-streamed-csv-url/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreelise/j4x-api-examples/HEAD/docs/using-joomla-framework/edit-joomla-articles-from-streamed-csv-url/README.md -------------------------------------------------------------------------------- /docs/using-joomla-framework/smart-add-edit-random-defined-sites-github-graphql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreelise/j4x-api-examples/HEAD/docs/using-joomla-framework/smart-add-edit-random-defined-sites-github-graphql/README.md -------------------------------------------------------------------------------- /docs/using-joomla-framework/smart-add-edit-to-multiple-sites-airtable-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreelise/j4x-api-examples/HEAD/docs/using-joomla-framework/smart-add-edit-to-multiple-sites-airtable-api/README.md -------------------------------------------------------------------------------- /docs/using-joomla-framework/smart-add-edit-to-multiple-sites-from-csv-url/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreelise/j4x-api-examples/HEAD/docs/using-joomla-framework/smart-add-edit-to-multiple-sites-from-csv-url/README.md -------------------------------------------------------------------------------- /docs/using-joomla-framework/smart-add-edit-with-subform-custom-field-support-from-streamed-csv-url/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreelise/j4x-api-examples/HEAD/docs/using-joomla-framework/smart-add-edit-with-subform-custom-field-support-from-streamed-csv-url/README.md -------------------------------------------------------------------------------- /docs/using-joomla-framework/smart-add-or-edit-joomla-articles-from-streamed-csv-url/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreelise/j4x-api-examples/HEAD/docs/using-joomla-framework/smart-add-or-edit-joomla-articles-from-streamed-csv-url/README.md -------------------------------------------------------------------------------- /docs/using-joomla-framework/turn-your-top-5-favorite-movies-into-joomla-articles-omdb-api/README.md: -------------------------------------------------------------------------------- 1 | # Turn your Top 5 Favorite Movies Into Joomla Articles 2 | 3 | > Not Implemented Yet ;-) 4 | -------------------------------------------------------------------------------- /docs/using-raw-php/add-joomla-articles-from-streamed-csv-url/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreelise/j4x-api-examples/HEAD/docs/using-raw-php/add-joomla-articles-from-streamed-csv-url/README.md -------------------------------------------------------------------------------- /docs/using-raw-php/edit-joomla-articles-from-streamed-csv-url/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreelise/j4x-api-examples/HEAD/docs/using-raw-php/edit-joomla-articles-from-streamed-csv-url/README.md -------------------------------------------------------------------------------- /docs/using-raw-php/smart-add-edit-random-defined-sites-github-graphql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreelise/j4x-api-examples/HEAD/docs/using-raw-php/smart-add-edit-random-defined-sites-github-graphql/README.md -------------------------------------------------------------------------------- /docs/using-raw-php/smart-add-edit-to-multiple-sites-airtable-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreelise/j4x-api-examples/HEAD/docs/using-raw-php/smart-add-edit-to-multiple-sites-airtable-api/README.md -------------------------------------------------------------------------------- /docs/using-raw-php/smart-add-edit-to-multiple-sites-from-csv-url/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreelise/j4x-api-examples/HEAD/docs/using-raw-php/smart-add-edit-to-multiple-sites-from-csv-url/README.md -------------------------------------------------------------------------------- /docs/using-raw-php/smart-add-edit-with-subform-custom-field-support-from-streamed-csv-url/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreelise/j4x-api-examples/HEAD/docs/using-raw-php/smart-add-edit-with-subform-custom-field-support-from-streamed-csv-url/README.md -------------------------------------------------------------------------------- /docs/using-raw-php/smart-add-or-edit-joomla-articles-from-streamed-csv-url/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreelise/j4x-api-examples/HEAD/docs/using-raw-php/smart-add-or-edit-joomla-articles-from-streamed-csv-url/README.md -------------------------------------------------------------------------------- /docs/using-raw-php/turn-your-top-5-favorite-movies-into-joomla-articles-omdb-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreelise/j4x-api-examples/HEAD/docs/using-raw-php/turn-your-top-5-favorite-movies-into-joomla-articles-omdb-api/README.md -------------------------------------------------------------------------------- /media/data/sample-data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreelise/j4x-api-examples/HEAD/media/data/sample-data.csv -------------------------------------------------------------------------------- /media/images/screenshot-joomla-webservices-airtable-api-mashup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreelise/j4x-api-examples/HEAD/media/images/screenshot-joomla-webservices-airtable-api-mashup.png -------------------------------------------------------------------------------- /media/images/screenshot-joomla-webservices-from-streamed-csv-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreelise/j4x-api-examples/HEAD/media/images/screenshot-joomla-webservices-from-streamed-csv-url.png -------------------------------------------------------------------------------- /media/images/screenshot-joomla-webservices-github-graphql-api-mashup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreelise/j4x-api-examples/HEAD/media/images/screenshot-joomla-webservices-github-graphql-api-mashup.png -------------------------------------------------------------------------------- /media/images/screenshot-joomla-webservices-omdb-movie-api-mashup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreelise/j4x-api-examples/HEAD/media/images/screenshot-joomla-webservices-omdb-movie-api-mashup.png -------------------------------------------------------------------------------- /using-joomla-framework/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /using-raw-php/add-joomla-articles-from-streamed-csv-url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreelise/j4x-api-examples/HEAD/using-raw-php/add-joomla-articles-from-streamed-csv-url.php -------------------------------------------------------------------------------- /using-raw-php/edit-joomla-articles-from-streamed-csv-url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreelise/j4x-api-examples/HEAD/using-raw-php/edit-joomla-articles-from-streamed-csv-url.php -------------------------------------------------------------------------------- /using-raw-php/smart-add-edit-random-defined-sites-github-graphql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreelise/j4x-api-examples/HEAD/using-raw-php/smart-add-edit-random-defined-sites-github-graphql.php -------------------------------------------------------------------------------- /using-raw-php/smart-add-edit-to-multiple-sites-airtable-api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreelise/j4x-api-examples/HEAD/using-raw-php/smart-add-edit-to-multiple-sites-airtable-api.php -------------------------------------------------------------------------------- /using-raw-php/smart-add-edit-to-multiple-sites-from-csv-url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreelise/j4x-api-examples/HEAD/using-raw-php/smart-add-edit-to-multiple-sites-from-csv-url.php -------------------------------------------------------------------------------- /using-raw-php/smart-add-edit-with-subform-custom-field-support-from-streamed-csv-url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreelise/j4x-api-examples/HEAD/using-raw-php/smart-add-edit-with-subform-custom-field-support-from-streamed-csv-url.php -------------------------------------------------------------------------------- /using-raw-php/smart-add-or-edit-joomla-articles-from-streamed-csv-url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreelise/j4x-api-examples/HEAD/using-raw-php/smart-add-or-edit-joomla-articles-from-streamed-csv-url.php -------------------------------------------------------------------------------- /using-raw-php/turn-your-top-5-favorite-movies-into-joomla-articles-omdb-api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandreelise/j4x-api-examples/HEAD/using-raw-php/turn-your-top-5-favorite-movies-into-joomla-articles-omdb-api.php --------------------------------------------------------------------------------