Skip to content

jonnywhite/wixhive-php-api

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WixHive API PHP Library

Build Status

This library is a PHP wrapper WixHive API.

Usage

        // create WixHive object
        $wixHive = new WixHive("{app_id}", "{app_secret_key}", "{instance_id}");
        
        // generate data for activity                    
        $field = new strClass();
        $field->name = "Name";
        $field->value = "Value";
            
        $activityInfo = new stdClass();
        $activityInfo->fields = [$field];
            
        // create the model    
        $createActivity = new CreateActivity(
            new DateTime(), 
            ActivityType::CONTACT_CONTACT_FORM, 
            null, 
            null, 
            $activityInfo, 
            null
        );
        
        // create the command to execute
        $command = new CreateActivity($createActivity);    
        
        try{
            
            /** @var ActivityResult $data */
            $data = $wixHive->execute($command, $userSessionToken); // <-- $userSessionToken comes from Wix JS SDK
            
        }catch (WixHiveException $e){
            // catch an error here
            print_r($e->getMessage());
        }

WixHive documentation live here

About

WixHiveAPI PHP Library

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%