AdMob身份验证失败,出现错误:“我们无法提交您的表单。请修复上面的字段。”
创始人
2024-07-28 02:00:28
0

这个问题通常是因为在填写AdMob收益账户信息时出现了错误,例如填写了不正确的姓名、地址或银行信息等。可以尝试以下

  1. 重新提交身份验证表单,确保所有信息都是准确的。

  2. 确保您上传的文件格式正确。例如,如果您要上传身份证照片,请确保它是清晰可见的JPEG或PNG格式。

  3. 如果问题仍然存在,请联系AdMob支持团队,他们可以帮助您解决问题。

以下是一个Java示例代码,用于AdMob身份验证表单的提交:

import com.google.api.client.http.; import com.google.api.client.auth.oauth2.; import com.google.api.client.json.jackson2.JacksonFactory; import com.google.api.services.admob.v1.AdMob; import com.google.api.services.admob.v1.model.*;

public class AdMobIdentityVerification {

public AdMobIdentityVerification() {}

public static void main(String[] args) throws Exception { // Initialize the OAuth2 credentials. GoogleCredential credentials = GoogleCredential.fromStream(new FileInputStream("credentials.json")) .createScoped(Collections.singleton(AdMobScopes.ADMOB_READONLY));

// Build the AdMob service object.
HttpTransport transport = GoogleNetHttpTransport.newTrustedTransport();
AdMob adMob = new AdMob.Builder(transport, new JacksonFactory(), credentials)
        .setApplicationName("AdMob Identity Verification Example")
        .build();

// Build the identity verification request object.
IdentityVerificationRequest request = new IdentityVerificationRequest()
        .setEmail("user@example.com")
        .setFirstName("John")
        .setLastName("Doe")
        .setCountryCode("US")
        .setPostalCode("94043")
        .setPhoneNumber("6501234567")
        .setStreetAddress("1600 Amphitheatre Pkwy")
        .setCity("Mountain View")
        .setState("CA");

// Submit the identity verification request.
IdentityVerification response = adMob.accounts().identityVerification().request(request).execute();

// Print the response.
System.out.printf("Identity verification status: %s", response.getStatus());

}

}

此示例依赖于Google API客户端库和AdMob API v1 Java客户端库。您需要安装这些库才能运行此代码。

相关内容

热门资讯

Android Recycle... 要在Android RecyclerView中实现滑动卡片效果,可以按照以下步骤进行操作:首先,在项...
安装apache-beam==... 出现此错误可能是因为用户的Python版本太低,而apache-beam==2.34.0需要更高的P...
Android - 无法确定任... 这个错误通常发生在Android项目中,表示编译Debug版本的Java代码时出现了依赖关系问题。下...
Android - NDK 预... 在Android NDK的构建过程中,LOCAL_SRC_FILES只能包含一个项目。如果需要在ND...
Alertmanager在pr... 首先,在Prometheus配置文件中,确保Alertmanager URL已正确配置。例如:ale...
Akka生成Actor问题 在Akka框架中,可以使用ActorSystem对象生成Actor。但是,当我们在Actor类中尝试...
Agora-RTC-React... 出现这个错误原因是因为在 React 组件中使用,import AgoraRTC from “ago...
Aksnginxdomainb... 在AKS集群中,可以使用Nginx代理服务器实现根据域名进行路由。以下是具体步骤:部署Nginx i...
Alertmanager中的基... Alertmanager中可以使用repeat_interval选项指定在一个告警重复发送前必须等待...
AddSingleton在.N... 在C#中创建Singleton对象通常是通过私有构造函数和静态属性来实现,例如:public cla...