google多个用户如何同时使用云语音

How multiple users use google cloud speech at the same time

我正在构建一个使用 Google Cloud Speech 的应用程序。

我的应用程序中有一个 Google 服务帐户密钥,我用它来调用 API。

一个用户使用时效果很好,但多个用户同时使用时就不行了。

例如,只有一个用户可用或所有用户都不可用。

服务帐户密钥的权限是项目所有者。

我认为这是一个服务帐户密钥问题... 我该如何解决?

private class AccessTokenTask extends AsyncTask<Void, Void, AccessToken> {

    @Override
    protected AccessToken doInBackground(Void... voids) {

        final SharedPreferences prefs = mContext.getSharedPreferences(PREFS, Context.MODE_PRIVATE);
        String tokenValue = prefs.getString(PREF_ACCESS_TOKEN_VALUE, null);
        long expirationTime = prefs.getLong(PREF_ACCESS_TOKEN_EXPIRATION_TIME, -1);

        // Check if the current token is still valid for a while
        if (tokenValue != null && expirationTime > 0) {
            if (expirationTime > System.currentTimeMillis() + ACCESS_TOKEN_EXPIRATION_TOLERANCE) {
                return new AccessToken(tokenValue, new Date(expirationTime));
            }
        }

        final InputStream stream = mContext.getResources().openRawResource(R.raw.credential);
        try {
            final GoogleCredentials credentials = GoogleCredentials.fromStream(stream).createScoped(SCOPE);
            final AccessToken token = credentials.refreshAccessToken();
            prefs.edit()
                    .putString(PREF_ACCESS_TOKEN_VALUE, token.getTokenValue())
                    .putLong(PREF_ACCESS_TOKEN_EXPIRATION_TIME, token.getExpirationTime().getTime())
                    .apply();
            return token;
        } catch (IOException e) {
            Log.e(TAG, "Failed to obtain access token.", e);
        }
        return null;
    }

    @Override
    protected void onPostExecute(AccessToken accessToken) {
        mAccessTokenTask = null;
        final ManagedChannel channel = new OkHttpChannelProvider()
                .builderForAddress(GOOGLE_API_HOSTNAME, GOOGLE_API_PORT)
                .nameResolverFactory(new DnsNameResolverProvider())
                .intercept(new GoogleCredentialsInterceptor(new GoogleCredentials(accessToken)
                        .createScoped(SCOPE)))
                .build();
        mApi = SpeechGrpc.newStub(channel);

        // Schedule access token refresh before it expires
        if (mHandler != null) {
            mHandler.postDelayed(mFetchAccessTokenRunnable,
                    Math.max(accessToken.getExpirationTime().getTime() - System.currentTimeMillis() - ACCESS_TOKEN_FETCH_MARGIN, ACCESS_TOKEN_EXPIRATION_TOLERANCE));
        }
    }
}

此代码是在 Android 上调用 'credential.json' 文件并获取 'Access token'.

的代码

此应用程序的服务器是 python 并通过 http 进行通信。

https://github.com/GoogleCloudPlatform/android-docs-samples/tree/master/speech/Speech

上面link中的描述告诉你将认证委托给服务器。

我想用 python 代码编写那部分。 我该怎么办?

在您提供的link描述中,他们建议您先阅读basic authentication concepts document。在您的情况下,请为 Android 应用程序使用服务帐户。

我了解到您已经能够 provide end user credentials 到 Google 云平台 API,例如 Cloud Speech API。

如果您想对您的应用程序的多个用户进行身份验证,您应该改用 Firebase authentication。 link 包含简要说明和教程。

several Python client libraries for GCP that you can use, depending on what operations do you want to perform on the server. And regarding Python authentication on the server side, this documentation 显示了 Google 云存储的身份验证是如何工作的(记住这个例子作为参考)。