[ABD] phpBB API

Any abandoned MODs will be moved to this forum.

WARNING: MODs in this forum are not currently being supported or maintained by the original MOD author. Proceed at your own risk.
Forum rules
IMPORTANT: MOD Development Forum rules

WARNING: MODs in this forum are not currently being supported nor updated by the original MOD author. Proceed at your own risk.
User avatar
Geolim4
Former Team Member
Posts: 1965
Joined: Sat Sep 11, 2010 3:28 pm
Location: Nantes, France
Name: Georges
Contact:

Re: [ALPHA] phpBB API

Post by Geolim4 »

Hello all,
Still alive :mrgreen:
For curious people here are the FIRST public key: 1zu679ie8vjh0w836151c171ddb9j9i4url9g83v
You try the GET rewrited URL:
JSON:
http://dev.geolim4.com/api/1zu679ie8vjh ... _id/1/json

XML:
http://dev.geolim4.com/api/1zu679ie8vjh ... c_id/1/xml


Sorry for french text, this is due to the french first-auto-welcome-topic-install :mrgreen:

You can also use cURL for the same result (POST method highly recommended):

Code: Select all

     curl_setopt($handle, CURLOPT_POSTFIELDS, array(
    		k => "1zu679ie8vjh0w836151c171ddb9j9i4url9g83v",//key id
    		e => "",//email (for admin authed key)
    		a => "post",//API action (The only one translatable param) related to the user-language => "message" in french
    		m => false,//Multibyte
    		t => "topic_id",//type of data
    		s => "",//S.S.O: Secure SQL Operator. Only supported: LIKE, <>, >, <, =, <=, >=
    		d => 1,//Data we're looking for
    		o => "json",//Output format
    		c => "bertie",//Callback name (If request has succeeded) POST ONLY
    		f => "bertie",//Fallback name (If request has failed) POST ONLY
    ));
For now only json/xml/serialize/ini*/csv* format are supported. *Beta
You can also access to your key stats:
http://dev.geolim4.com/api/1zu679ie8vjh ... ts/-/-/xml
Or key option:
http://dev.geolim4.com/api/1zu679ie8vjh ... ns/-/-/xml

Of course, in order to let you test the key, there's no IP/Quota limitation 8-)
But i will not spoil all functionality now.
I just finished UCP settings yesterday, i'm currently writing the knowledge base/FAQ. Final hardcore step :evil:

Sorry for french screenshoot, i'm too lazy to switch my language for that.
Much more coming soon ;)

Once i reach the RC status, i will begin the 3.1.x support.
phpBB-fr Former MOD Team Leader / Website Team Member
User avatar
Geolim4
Former Team Member
Posts: 1965
Joined: Sat Sep 11, 2010 3:28 pm
Location: Nantes, France
Name: Georges
Contact:

Re: [ALPHA] phpBB API

Post by Geolim4 »

Hi All,
I am excited to announce i'm working with ABDev on a (windows only for now, but we are thinking to include Linux dist. asap too) remote control software that use the phpBB API (Final software design subject to change):
Image Image Image Image

Of course we will provide the (Windev) source code as it is a GNU/GPL v2 project.

I also worked on a new major improvement:
Image

The API will be able to work dynamically (Admin keys only) with phpBB(API) constants using $ prefix.

Finally, i wrote an advanced debug function that will help you (and me) to be easiest involved in the development. A light DB-log combined with a full FTP-log will help you to trace any errors (even fatal) in the API.

The hook system will allow you to set advanced filters/privileges etc...
I'm still alive, but alone, stay tuned ;)
phpBB-fr Former MOD Team Leader / Website Team Member
User avatar
ViolaF
I've Been Banned!
Posts: 1609
Joined: Tue Aug 14, 2012 11:52 pm

Re: [ALPHA] phpBB API

Post by ViolaF »

galactic project and results. thanks for sharing your work :D
User avatar
Geolim4
Former Team Member
Posts: 1965
Joined: Sat Sep 11, 2010 3:28 pm
Location: Nantes, France
Name: Georges
Contact:

Re: [ALPHA] phpBB API

Post by Geolim4 »

Hi All, i just improved a major feature:
Image

You can now logging in your account directly via the API 8-)

It's a short login method which doesn't require user's password.

I will try to improve a cross-board registration using phpBB API, should look like this:
Image

Sorry for long delay, i promised it for month ago, but i was busy with xmas :cry:
phpBB-fr Former MOD Team Leader / Website Team Member
User avatar
Geolim4
Former Team Member
Posts: 1965
Joined: Sat Sep 11, 2010 3:28 pm
Location: Nantes, France
Name: Georges
Contact:

Re: [ALPHA] phpBB API

Post by Geolim4 »

The deadline approach slowly but surely, i just started first live tests and... It's not so bad for now 8-)

I want to inform you that the API will require PHP 5.4.1 at least, so please anticipate the fact that you may need to upgrade your php configuration
phpBB-fr Former MOD Team Leader / Website Team Member
User avatar
keith10456
Registered User
Posts: 2315
Joined: Thu Feb 24, 2005 6:55 pm
Contact:

Re: [ALPHA] phpBB API

Post by keith10456 »

Good stuff... Keep up the good work ;)
User avatar
Geolim4
Former Team Member
Posts: 1965
Joined: Sat Sep 11, 2010 3:28 pm
Location: Nantes, France
Name: Georges
Contact:

Re: [ALPHA] phpBB API

Post by Geolim4 »

Using the php mcrypt extension, the API will be able to encrypt the outputted data if you're NSA's scared :mrgreen: . The API will use the blowfish cipher per default.
phpBB-fr Former MOD Team Leader / Website Team Member
User avatar
Geolim4
Former Team Member
Posts: 1965
Joined: Sat Sep 11, 2010 3:28 pm
Location: Nantes, France
Name: Georges
Contact:

Re: [BETA] phpBB API

Post by Geolim4 »

The first BETA of the API is now available to download, see first post to read more.
I'd really like to get your feedback, don't hesitate to post any question/bug you have :!:
phpBB-fr Former MOD Team Leader / Website Team Member
User avatar
ViolaF
I've Been Banned!
Posts: 1609
Joined: Tue Aug 14, 2012 11:52 pm

Re: [BETA] phpBB API

Post by ViolaF »

Good, very good news, Mr. Geolim :D
User avatar
keith10456
Registered User
Posts: 2315
Joined: Thu Feb 24, 2005 6:55 pm
Contact:

Re: [BETA] phpBB API

Post by keith10456 »

Great work... Congrats :D
User avatar
Geolim4
Former Team Member
Posts: 1965
Joined: Sat Sep 11, 2010 3:28 pm
Location: Nantes, France
Name: Georges
Contact:

Re: [BETA] phpBB API

Post by Geolim4 »

Thanks, hope you enjoy it ;)
phpBB-fr Former MOD Team Leader / Website Team Member
User avatar
keith10456
Registered User
Posts: 2315
Joined: Thu Feb 24, 2005 6:55 pm
Contact:

Re: [BETA] phpBB API

Post by keith10456 »

Will you port this to 3.1?
User avatar
Mess
Registered User
Posts: 985
Joined: Wed Jul 01, 2009 6:37 am
Name: Kim

Re: [BETA] phpBB API

Post by Mess »

geolim4 you should consider finished this as part of GSoC 2014. :)
User avatar
Geolim4
Former Team Member
Posts: 1965
Joined: Sat Sep 11, 2010 3:28 pm
Location: Nantes, France
Name: Georges
Contact:

Re: [BETA] phpBB API

Post by Geolim4 »

keith10456 wrote:Will you port this to 3.1?
Why are you asking that without testing the mod in 30x before? Yes i will do only if i see a real interest from the community.
Mess wrote:geolim4 you should consider finished this as part of GSoC 2014. :)
Not interested yet (maybe later) as i'm already being busy with Mod validation (Jr team) && MOD team management @phpbb-fr.
phpBB-fr Former MOD Team Leader / Website Team Member
User avatar
keith10456
Registered User
Posts: 2315
Joined: Thu Feb 24, 2005 6:55 pm
Contact:

Re: [BETA] phpBB API

Post by keith10456 »

geolim4 wrote:
keith10456 wrote:Will you port this to 3.1?
Why are you asking that without testing the mod in 30x before? Yes i will do only if i see a real interest from the community.
I have plans to test it once my semester is over (in a couple of weeks) ;)
Locked

Return to “[3.0.x] Abandoned MODs”