Skip to content

Basic implementation of the write.as / write.freely api in PHP

License

Notifications You must be signed in to change notification settings

theimpossibleastronaut/writeas.php

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PHP Composer License Latest Stable Version Latest Unstable Version

writeas.php

Implementation of the write.as API in PHP.

It's very basic, and PHP 7.x oriented, but should work on most versions as it's only clear dependency is curl.

<?php
require_once( "lib/writeas.php" );

Or use composer:

composer require theimpossibleastronaut/writeas.php
<?php
require __DIR__ . '/vendor/autoload.php';

Then check one of the examples!

require_once( "../lib/writeas.php" );

$context = new \writeas\Context();
$post = new Post( $context );
$post->body = "Hello from Writeas.php";
$post->save();

Work in progress

  • Authentication
  • Posts
  • Collections
  • Users