Code Monkey home page Code Monkey logo

devzone's People

Contributors

michalclickmeeting avatar mits87 avatar pbrydzinski avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

devzone's Issues

example.php

What's the "get_called_class()" on line 30. When I ran this, I got the error "Call to undefined function get_called_class() on line 30".

<Sorry, it's my fault, because I used the lower php version.>

deleteConference

     public function deleteConference($id)
    {
        return $this->getResponse('DELETE', array('conferences/'.$id));
    }

In my opinion it should use also account id:

   public function deleteConference($conference_id,$account_id)
    {
        return $this->getResponse('DELETE', array('accounts/'.$account_id.'/conferences/'.$conference_id.'.json'));
    }

& is interpreted as amp;

By sending a clickmeeting query using http_build_query($params) without specifying additional parameters, their server could interprate & as amp;. To avoid that, the code should look like:
http_build_query( $params, '', '&' )

curl_setopt($curl, CURLOPT_POSTFIELDS, $is_upload_file ? $params : http_build_query($params));

Issue with order in parameters in sendConferenceEmailInvitations() function

I encountered issue with function sendConferenceEmailInvitations() in this function is wrong order with parameters because Required parameter is after Optional.

This function is in 226 line

Solution:

public function sendConferenceEmailInvitations($room_id, $params, $lang = 'en')
{
    return $this->sendRequest('POST', 'conferences/'.$room_id.'/invitation/email/'.$lang, $params);
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.