我正在尝试在 winform 应用程序中访问 Moz API。我查看了 PHP 指南并尝试将其转换为 C#,但遇到了问题。
PHP 示例:https://github.com/seomoz/SEOmozAPISamples/blob/master/php/signed_authentication_sample.php
我认为是我的签名搞砸了。在文档中它说:
“签名:您的访问 ID、过期参数和密钥的 HMAC-SHA1 哈希值。在 Mozscape 接受签名有效之前,安全哈希值必须进行 Base64 编码,然后进行 URL 编码。”
long epochTicks = new DateTime(1970, 1, 1).Ticks;
long unixTime = ((DateTime.UtcNow.Ticks - epochTicks) / TimeSpan.TicksPerSecond) + 500;
var id = "mozscape-xxxxxxxx";
var secretKey = "xxxxxxxxxxxxxxxxxxxxxxxxxxxx";
var enc = Encoding.ASCII;
HMACSHA1 hmac = new HMACSHA1(enc.GetBytes(secretKey));
hmac.Initialize();
var access = "mozscape-fa667096b" + "\r\n" + unixTime;
byte[] buffer = enc.GetBytes(access);
string signature = BitConverter.ToString(hmac.ComputeHash(buffer));
string signatureStep2 = System.Text.Encoding.UTF8.EncodeBase64(signature);
string signatureStep3 = HttpUtility.UrlEncode(signatureStep2);
有什么想法吗?我收到的错误是我的身份验证失败。
通过查看https://github.com/PixelMEDIA/SEOMozLib解决了这个问题。
这是正确生成密钥的方法:
public string CreateHashSignature(string strMozAccessId, string strMozSecretKey, string strTimeStamp)
{
string token = strMozAccessId + Environment.NewLine.Replace("\r", "") + strTimeStamp;
using (var hmac = new HMACSHA1(Encoding.UTF8.GetBytes(strMozSecretKey), true))
{
var hash = hmac.ComputeHash(Encoding.ASCII.GetBytes(token));
var hashString = BitConverter.ToString(hash).Replace("-", "").ToLower();
return HttpUtility.UrlEncode(Convert.ToBase64String(hash));
}
}
您可以使用我的库 LINQTOMOZ https://github.com/PavelMatua/LinqToMoz
只需将您的访问密钥和安全密钥放入 MOZService 构造函数即可。我们开始吧!
MOZService service = new MOZService("your access key","your security key");
var urlMetrics = service.QueryURLMetrics();
var result = urlMetrics.Where((arg) => sites.Contains(arg.SearchingURL) && arg.SourceCols == URLMetricsCols.FREE)
.Select(x => new { equityLinkNumber = x.MetricsResult.ueid, cononicalURL = x.MetricsResult.uu })
.OrderByDescending(x => x.equityLinkNumber);