Qual é o formato correto para o Firefox build '--with-bing-api-keyfile'?

0

Eu tento construir o firefox especificando uma chave API do bing ( ac_add_options --with-bing-api-keyfile=</path/to/keyfile> no .mozconfig ). No entanto, quando a configuração é executada, recebo o erro ERROR: Bing API key file has an invalid format. I fornecido a API no arquivo </path/to/keyfile> como uma sequência de 64 caracteres (com ou sem uma nova linha à direita, ambas não funcionam).

    
por Golar Ramblar 24.05.2017 / 20:58

1 resposta

0

A resposta é:

O nome de usuário ao qual a chave da API pertence precisa ser prefixado, separado por espaço em branco. Então o formato deve ser

<https://www.bingmapsportal.com/-Username> <API key>

Olhando para o que verifica o firefox-build-configuration sugere que há algumas informações como um ID necessário:

[...]
      with MockedOpen({'key': 'fake-id fake-key\n'}):
        config, output, status = self.get_result(
            "id_and_secret_keyfile('Bing API')",
            args=['--with-bing-api-keyfile=key'],
            includes=includes)
        self.assertEqual(status, 0)
        self.assertEqual(output, textwrap.dedent('''\
            checking for the Bing API key... yes
        '''))
        self.assertEqual(config, {
            'MOZ_BING_API_CLIENTID': 'fake-id',
            'MOZ_BING_API_KEY': 'fake-key',
        })

    with MockedOpen({'key': 'fake-key\n'}):
        config, output, status = self.get_result(
            "id_and_secret_keyfile('Bing API')",
            args=['--with-bing-api-keyfile=key'],
            includes=includes)
        self.assertEqual(status, 1)
        self.assertEqual(output, textwrap.dedent('''\
            checking for the Bing API key... no
            ERROR: Bing API key file has an invalid format.
        '''))
        self.assertEqual(config, {})
[...]
    
por 24.05.2017 / 21:10

Tags