Skip to content
Advertisement

Google Classroom – Create Course Error PHP

I’m trying to create a course using the Google_Service_Classroom API, using PHP, but I get an error in the call.

JavaScript

My return:

JavaScript

I’m seeing the documents, but I don’t see where to fix this problem.

Advertisement

Answer

The error message is self-explanatory. It says Argument 1 passed to Google_Service_Classroom_Resource_Courses::create() must be an instance of Google_Service_Classroom_Course, array given and this occurs because $postBody is an array.

As shown in the documentation of function create

JavaScript

this function expects the first parameter to be a Google_Service_Classroom_Course object instead of an array. So you need to first create an object of this type and then pass this object as parameter. So the end result should be like:

JavaScript

note: since the second parameter has a default value of empty array (array $optParams = array()) it is not necessary to include it explicitly. The last line of the above is exactly the same with:

JavaScript

Also have in mind that since $course is an object its not advised to print it like you do with arrays. You can instead print specific info of the object like:

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement