谷歌控制台的新布局(https://console.developers.google.com/ )有点难以理解。 API访问在哪里?如何获取API密钥以及如何签署身份验证等?
答案 0 :(得分:2)
在<table class="table table-bordered text-center" id="table-user">
<thead>
<tr class="info">
<th>Download</th>
<th>Pelajaran</th>
</tr>
</thead>
<tbody>
<?php
foreach($file as $data){
?>
<tr>
<td width="50%"><a href="<?php echo site_url('download/download/'.$data->file);?>">Download</a></td>
<td width="50%"><?php echo $data->pelajaran;?></td>
</tr>
<?php
}
?>
</tbody>
<tfoot>
</tfoot>
</table>
下 - &gt; APIs & Auth
,点击Credentials
即可添加一个。
答案 1 :(得分:1)
您需要从左上方选项创建新项目,即链接中提供的下拉列表。创建新项目后,您将能够在左侧面板中找到APIS,权限等选项。您需要在 Google Maps API 部分下启用 Google Maps Android API 。完成导航到凭据部分并点击添加凭据后,在选择 API密钥时,系统会要求您选择密钥类型。选择 Android密钥,并提供包名称和 SHA-1证书指纹,您将能够获取应用的API密钥。
答案 2 :(得分:1)
由于