我正在进行Java编码,以便通过API为我的用户创建委托人。在Google Developers page上,为Java编码提供的示例仍然使用<table id="TableA">
<tr>
<td>Old top row</td>
</tr>
</table>
<script type="text/javascript">
function addRow(tableID) {
// Get a reference to the table
var tableRef = document.getElementById(tableID);
// Insert a row in the table at row index 0
var newRow = tableRef.insertRow(0);
// Insert a cell in the row at index 0
var newCell = newRow.insertCell(0);
// Append a text node to the cell
var newText = document.createTextNode('New top row');
newCell.appendChild(newText);
}
// Call addRow() with the ID of a table
addRow('TableA');
</script>
库。
我的第一个问题是,这个库或示例JAR文件是否仍可用于新的OAuth2.0?如果是,我在哪里可以下载文件?
其次,我正在尝试为我的域中的用户注册代理,并且在注册后,我还想将已打开的会话的设置更改为&#34;当其他人打开时将对话保持未读状态&#34;。这可能是API吗?