• Jobs
  • About Us
  • professionals
    • Home
    • Jobs
    • Courses and challenges
  • business
    • Home
    • Post vacancy
    • Our process
    • Pricing
    • Assessments
    • Payroll
    • Blog
    • Sales
    • Salary Calculator

0

339
Views
PHP Google Docs API - create options not working

When a new Google Doc is create:

    $title = '5 - Testing';
    $opcoes = [
        'title' => $title,
        'documentStyle' => [
            'background' => [ 
                'color' => [
                    'color' => [
                        'rgbColor' => [
                            'red' => 1.0,
                            'green' => 0.0,
                            'blue' => 0.0
                        ]
                    ]
                ] 
            ],
            'pageSize' => [
                'height' => ['magnitude' => 297 * 0.35146, 'unit' => 'PT'],
                'width' => ['magnitude' => 210 * 0.35146, 'unit' => 'PT'],
            ],
            'marginTop' => ['magnitude' => 27 * 0.35146, 'unit' => 'PT'],
            'marginBottom' => ['magnitude' => 15 * 0.35146, 'unit' => 'PT'],
            'marginLeft' => ['magnitude' => 25 * 0.35146, 'unit' => 'PT'],
            'marginRight' => ['magnitude' => 15 * 0.35146, 'unit' => 'PT'],
        ]
    ];
    $documento = new Google_Service_Docs_Document($opcoes);

    try {
        $documento = $this->docService->documents->create($documento);
    } catch (Exception $e) {
        die($e);
    }

The doc is created but with the default options (background color white, margins 2.5cm)

Same result when I use API explorer.

Any idea what's going on?

over 3 years ago · Santiago Trujillo
1 answers
Answer question

0

Issue:

documents.create can only be used to create a blank document and set its title:

Creates a blank document using the title given in the request. Other fields in the request, including any provided content, are ignored.

Use batchUpdate:

Any other customization of the document has to be made via documents.batchUpdate.

Check the list of available update requests here.

And, more specifically, check UpdateDocumentStyleRequest.

over 3 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Our process Sales
Legal
Terms and conditions Privacy policy
© 2025 PeakU Inc. All Rights Reserved.

Andres GPT

Recommend me some offers
I have an error