Git Product home page Git Product logo

Comments (8)

jakobr-google avatar jakobr-google commented on May 2, 2024 4

I'll take a look at it.

from googleapis.dart.

mkustermann avatar mkustermann commented on May 2, 2024 3

Sorry for the slow response rate, have been quite busy. I'll take a look at it as soon as I've got some time!

from googleapis.dart.

jakobr-google avatar jakobr-google commented on May 2, 2024 3

Here's a small sample that uses the Translate API (using an API key for authentication):

import 'dart:io';

import 'package:googleapis/translate/v2.dart';
import 'package:googleapis_auth/auth_io.dart';

main(List<String> args) async {
  final apiKey = new File('api.key').readAsStringSync();
  final client = await clientViaApiKey(apiKey);
  final translate = new TranslateApi(client);

  final q = ['Hello world!', 'I can translate stuff.', 'Vamos a la playa!'];

  final daResults = await translate.translations.list(q, 'da');
  for (final result in daResults.translations) {
    print('${result.translatedText} (${result.detectedSourceLanguage})');
  }

  final isRequest = new TranslateTextRequest()
    ..q = q
    ..target = 'is';
  final isResults = await translate.translations.translate(isRequest);
  for (final result in isResults.translations) {
    print('${result.translatedText} (${result.detectedSourceLanguage})');
  }

  await client.close();
}

Result of running this program (with a valid API key):

Hej Verden! (en)
Jeg kan oversætte ting. (en)
Lad os gå til stranden! (es)
Halló heimur! (en)
Ég get þýtt efni. (en)
Við skulum fara á ströndina! (es)

from googleapis.dart.

mkustermann avatar mkustermann commented on May 2, 2024 1

So I've taken a look now and it seems that the translate api is using a special "feature" - namely the "dataWrapper" feature, where all request/response data should be wrapped. See translate's discovery document

It appears that the translate API is the only api which uses this deprecated "dataWrapper" feature. It is described at discovery-features:

The dataWrapper feature indicates that all requests to and responses from the API are wrapped in a data JSON object. This is a feature of older Google APIs, but it is being deprecated moving forward. The following APIs support the dataWrapper feature: Moderator v1, and Translate v2.

Our discoveryapis_generator simply ignores the dataWrapper feature and therefore doesn't wrap request/response objects. It should not be too hard to modify the generator to check for the dataWrapper feature and generate the code accordingly.

@rinukkusu We would be happy if you were interested in adding this feature to discoveryapis_generator. Otherwise I can take care of it at some point.

from googleapis.dart.

mkustermann avatar mkustermann commented on May 2, 2024 1

@jakobr-google Would you be interested into looking at this?

I've already described what's the issue and how to fix it. It should be quite simple I think.

from googleapis.dart.

rinukkusu avatar rinukkusu commented on May 2, 2024

Pinging @mkustermann - is there anything I can do to help you solve this?

from googleapis.dart.

rinukkusu avatar rinukkusu commented on May 2, 2024

Great, thanks a lot!! 👍

from googleapis.dart.

justkawal avatar justkawal commented on May 2, 2024

Here's a small sample that uses the Translate API (using an API key for authentication):

import 'dart:io';

import 'package:googleapis/translate/v2.dart';
import 'package:googleapis_auth/auth_io.dart';

main(List<String> args) async {
  final apiKey = new File('api.key').readAsStringSync();
  final client = await clientViaApiKey(apiKey);
  final translate = new TranslateApi(client);

  final q = ['Hello world!', 'I can translate stuff.', 'Vamos a la playa!'];

  final daResults = await translate.translations.list(q, 'da');
  for (final result in daResults.translations) {
    print('${result.translatedText} (${result.detectedSourceLanguage})');
  }

  final isRequest = new TranslateTextRequest()
    ..q = q
    ..target = 'is';
  final isResults = await translate.translations.translate(isRequest);
  for (final result in isResults.translations) {
    print('${result.translatedText} (${result.detectedSourceLanguage})');
  }

  await client.close();
}

Result of running this program (with a valid API key):

Hej Verden! (en)
Jeg kan oversætte ting. (en)
Lad os gå til stranden! (es)
Halló heimur! (en)
Ég get þýtt efni. (en)
Við skulum fara á ströndina! (es)

This example does not works with latest version of Google Apis in dart

Any help is appreciated.

from googleapis.dart.

Related Issues (20)

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.