验证Google App Engine的域名

时间:2016-12-19 14:11:14

标签: google-app-engine dns google-cloud-platform

我们无法验证我们的Google App Engine应用程序域名。

我们在Hostek注册了一个域名,我们的名称服务器目前位于:

 @implementation atelierFormInputCell
 @synthesize label, textInput, row;

 - (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
 {
     self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
    UIColor *gris = [UIColor colorWithRed:108/255.0 green:116/255.0 blue:120/255.0 alpha:1.0];
    UIColor *black = [UIColor blackColor];
    UIColor *transparent = [UIColor clearColor];

    label = [[UILabel alloc]init];
    label.textAlignment = UITextAlignmentLeft;
    label.font = [UIFont fontWithName:@"FontType-Normal" size:14.0];
    label.backgroundColor = transparent;
    label.textColor = gris;
    label.numberOfLines = 1;



    textInput = [[UITextField alloc] init];
    textInput.borderStyle = UITextBorderStyleNone;
    textInput.textAlignment = UITextAlignmentRight;
    textInput.backgroundColor = transparent;
    textInput.font = [UIFont fontWithName:@"FontType-Normal" size:14.0];
    textInput.backgroundColor = transparent;
    textInput.textColor = black;
    textInput.returnKeyType = UIReturnKeyDone;

    [self.contentView addSubview:label];
    [self.contentView addSubview:textInput];

    self.selectionStyle = UITableViewCellSelectionStyleNone;
     }
     return self;
     }

我在Google Cloud中创建了一个DNS区域,并添加了TXT记录,其中包含Google App Engine为我提供的值,但是当点击"验证"在谷歌方面,我收到了错误

ns-cloud-c1.googledomains.com
ns-cloud-c2.googledomains.com
ns-cloud-c3.googledomains.com
ns-cloud-c4.googledomains.com

在此之下,如果我点击"显示找到的DNS TXT记录",我看到

Verification failed for cbcdashboard.com using the DNS TXT record method (less than a minute ago). We couldn't find the verification token in your domain's TXT records. You might need to wait a few minutes before Google sees your changes to the TXT records.

似乎看到了价值,但不认为它是正确的。我尝试添加和不添加引号。有什么想法吗?

1 个答案:

答案 0 :(得分:1)

我刚刚做了一个挖掘并得到了这个:

"google-site-verification=PDmOnhweMP0C1aXpkNh-4kG-Mlhg3o22viWjGm_gn3U"

所以看起来这是一个传播问题。当您对DNS进行更改时,它不会在DNS上传播一段时间。如果您再次尝试验证它现在有效吗?