- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我想知道是否有人可以分享他使用 quandl api_c
检索数据的经验:
下面是示例代码:
#include <iostream>
#include "C:\local\quandl.h"
//Reference: https://github.com/zafuer/QuandlAPI_C
int main()
{
quandl ql;
ql.auth("<code>"); // Replace <code> with your own token.
ql.get("GOOG/PINK_TCEHY");
return 0;
}
它确实编译,但在项目路径 PINK_TCEHY.csv
中检索到意外的 xml
信息:
<html>
<head><title>301 Moved Permanently</title></head>
<body bgcolor="white">
<center><h1>301 Moved Permanently</h1></center>
<hr><center>nginx/1.4.6 (Ubuntu)</center>
</body>
</html>
有人能解释一下这种现象吗?
最好的,
最佳答案
Quandl不再支持HTTP请求,现在请求必须通过HTTPS,我在windows下使用curl:
#include <stdio.h>
#include <curl/curl.h>
int main(void)
{
CURL *curl;
CURLcode res;
curl = curl_easy_init();
if(curl) {
/* First set the URL that is about to receive our POST. This URL can
just as well be a https:// URL if that is what should receive the
data. */
curl_easy_setopt(curl, CURLOPT_URL, "https://www.quandl.com/api/v3/datasets/WIKI/FB/data");
/* Perform the request, res will get the return code */
res = curl_easy_perform(curl);
/* always cleanup */
curl_easy_cleanup(curl);
}
return 0;
}
对于 linux,使用 OpenSSL 的 api 将是:
/*
* quandl(linux).h
*
* Created on: 30/09/2013 (Updated on 10/09/2014) ((Revised on 15/08/2016))
* Author: Zhiwei Fu
* Revision: Jose Marqués Fernández http://www.epigijon.uniovi.es/
*/
/* This programme is free software. It is developed by Dr Zhiwei Fu as a product
contributing to quandl.com.
This programme is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY, without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*/
//OpenSSL required, for install on ubuntu: sudo apt-get install libssl-dev
//for compile: g++ xxx.cpp -std=c++11 -lssl -lcrypto -o xxx
#ifndef QUANDL_H_
#define QUANDL_H_
#include <iostream>
#include <fstream> //for perror()
#include <string> // string for c++
#include <string.h> // for memset()/bzero() For C
#include <sys/socket.h>
#include <netinet/in.h> // for sockaddr_in, hotons
#include <arpa/inet.h> // for inet_addr
#include <netdb.h> //for gethostbyname(), gethostbyaddr()
#include <netinet/tcp.h> // for TCP_NODELAY
#include <time.h> // time.h
// for https
#include <sys/types.h>
#include <unistd.h>
#include <signal.h>
#include <stdio.h>
#include <fcntl.h>
#include <errno.h>
#include <sys/time.h>
#include <stdlib.h>
#include <memory.h>
#include <ifaddrs.h>
#include <net/if.h>
#include <stdarg.h>
#include <openssl/crypto.h>
#include <openssl/x509.h>
#include <openssl/pem.h>
#include <openssl/ssl.h>
#include <openssl/err.h>
//using namespace std;
class quandl {
public:
quandl(){
};
~quandl(){};
// To store the token in "AuthCode", which is a public variable in the class.
void auth(std::string code){
AuthCode = code;
}
//To download file from the website defined by the first
//argument.
// To determine the website address by the token stored in "code"
// and call the function "download"
void get(std::string code){
//Set optional variables by default
std::string order = "asc";
std::string type = "csv";
std::string website = "https://www.quandl.com/api/v3/datasets/" + code
+ "." + type + "?sort_order=" + order;
if(AuthCode.length() == 0){
std::cout << "It would appear you are\'nt using an authentication"
<< " token. Please visit https://www.quandl.com/help/c++"
<< " or your usage may be limited.\n";
}
else{
website += "&api_key=" + AuthCode;
}
std::string FileName;
int iLength = code.length();
for (int i=0; i < iLength; i++){
if(code.substr(i, 1) == "/"){
FileName = code.substr(i+1, iLength - i -1);
break;
}
}
download(website, FileName, type);
return;
}
// All parameters are prescribed by users.
// 1. Quandl code;
// 2. Ascending/descending order;
// 3. Start date;
// 4. End date;
// 5. Transformation;
// 6. collapse;
// 7. Rows;
// 8. Output type
// There are 7 optional arguments compared to the one above.
void get(std::string code, std::string order, std::string StartDate, std::string EndDate,
std::string transformation, std::string collapse, std::string rows, std::string type){
std::string website = "https://www.quandl.com/api/v3/datasets/" + code
+ "." + type + "?sort_order=" + order;
if(AuthCode.length() == 0){
std::cout << "It appear you are\'nt using an authentication"
<< " token. Please visit https://www.quandl.com/help/api for getting one"
<< " ; otherwise your usage may be limited.\n";
}
else{
website += "&api_key=" + AuthCode;
}
website += "&trim_start=" + StartDate;
website += "&trim_end=" + EndDate;
website += "&transformation=" + transformation;
website += "&collapse=" + collapse;
website += "&rows=" + rows;
std::string FileName;
int iLength = code.length();
for (int i=0; i < iLength; i++){
if(code.substr(i, 1) == "/"){
FileName = code.substr(i+1, iLength - i -1);
break;
}
}
download(website, FileName, type);
}
private:
std::string AuthCode;
// This void function "download" is to download a file from internet.
// The "download" function is developed with a general purpose of downloading
// files from internet. It is based on the socket programming.
void download(std::string website, std::string FileName, std::string FileType){
struct sockaddr_in ServAddr;
struct hostent *ServInf;
int sockfd;
int iMessage = 1048576; //1 MB for the buff storage
char message[iMessage];
std::string request = "GET ";
std::ofstream fid;
int iStart, iEnd, iLength;
SSL_CTX *ctx;
SSL *ssl;
OpenSSL_add_all_algorithms();
ERR_load_crypto_strings();
SSL_load_error_strings();
if(SSL_library_init() < 0){
std::cerr<<"OpenSSL error"<<std::endl;
return;
}
ctx = SSL_CTX_new (SSLv23_client_method ());
SSL_CTX_set_options(ctx, SSL_OP_NO_SSLv2);
//To define the server's address.
memset(&ServAddr, 0, sizeof(ServAddr));
std::string host;
iLength = website.length();
iStart = 0; iEnd = iLength - 1;
if(website.substr(0,8) == "https://") iStart = 8;
else if(website.substr(0,7) == "http://") iStart = 7;
for(int i = iStart; i<iLength; i++){
if(website.substr(i, 1)=="/"){
iEnd = i - 1;
break;
}
}
host = website.substr(iStart, iEnd - iStart + 1);
ServInf = gethostbyname(host.c_str());
if(ServInf == NULL){
std::cerr<<"HostName error"<<std::endl;
return;
}
//Get a socket
if((sockfd = socket(AF_INET, SOCK_STREAM, 0)) == -1){
std::cerr<<"Socket error"<<std::endl;
return;
}
memset(&ServAddr, 0, sizeof(ServAddr));
ServAddr.sin_family = AF_INET;
ServAddr.sin_port = htons(443);
ServAddr.sin_addr.s_addr = *(long*)(ServInf->h_addr);
if ( connect(sockfd, (struct sockaddr*)&ServAddr, sizeof(ServAddr)) == -1 ) {
std::cerr<<"Conection error"<<std::endl;
return;
}
ssl = SSL_new(ctx);
SSL_set_fd(ssl, sockfd);
SSL_connect(ssl);
// To send the request.
request += website + " HTTP/1.1\r\nHost: " + host + "\r\nConnection: close\r\n\r\n";
SSL_write(ssl, request.c_str(), request.length());
// To initiate the file.
fid.open((FileName + "." + FileType).c_str());
if(fid.fail()){
std::cerr << "OpeningFile error" << std::endl;
return;
}
// To read dataflow for the file.
int iRecv = 1;
std::string RcvDt;
while (iRecv != 0 && iRecv != -1){
memset(message, '\0', sizeof(message));
iRecv= SSL_read(ssl, message, iMessage);
RcvDt+=std::string(message);
}
std::string initS="\r\n\r\n";
std::string servR="\r\n";
std::size_t found = RcvDt.find(initS);
if (found!=std::string::npos){
RcvDt.erase(0,found+10);
}
while((found!=std::string::npos)&&(found<RcvDt.size()-8)){
found = RcvDt.find(servR);
if(found<(RcvDt.size()-8)){
RcvDt.erase(found,8);
}
}
fid.write(RcvDt.c_str(), RcvDt.size());
// To close the downloaded file
fid.close();
if(iRecv == -1){
std::cerr<<"SSL_read error"<<std::endl;
return;
}
SSL_free(ssl);
close(sockfd);
SSL_CTX_free(ctx);
}
};
#endif /* QUANDL_H_ */
希望对你有用
关于c++ - quandl api_c++ 无法检索数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34273808/
如果我使用下面的代码,数据将为零 dispatch_async(dispatch_get_global_queue(0,0), ^{ UIImage *img = [[UIImage allo
fread来自 data.table包一般可以在读取文件时自动确定列分隔符( sep )。 例如,这里fread自动检测 |作为列分隔符: library(data.table) fread(past
因此,如果我有一个如下所示的数据框: A B C rowname1 4.5 4 3.2 rowname2 3 23
我有一个汽车模型的搜索数据库:“日产Gtr”,“Huynday Elantra”,“Honda Accord”等。 现在我还有一个用户列表和他们喜欢的汽车类型 user1喜欢:carId:1234,c
我正在使用 Javamail 来获取一些电子邮件数据。我将用户输入作为电子邮件 ID、imap 地址和密码并连接到 imap。然后我监视收件箱的电子邮件并查明此人是否在“收件人”或“抄送”中。 Ema
我有一些数据,我想根据差距统计来评估最佳簇数。 我阅读了 gap statistic 上的页面在 r 中给出了以下示例: gs.pam.RU Number of clusters (method '
我有一个用户名和密码组合,我将使用它通过 java 代码访问安全服务器。 我的想法是: 在外部存储加密凭据 执行时提示用户输入解密密码 在使用前将解密的凭据直接存储在字符数组中 使用凭据连接到数据库
这是 Firebase 数据:[Firebase 数据][1] 我必须从员工那里检索所有字段并将其存储在一个数组中。 现在数据更改 toast 消息即将到来,但已经很晚了。 Firebase.setA
我是 iOS 的新手,正在开发一个基本的应用程序,它目前正在使用 SSKeychain 和 AFNetworking 与 API 进行交互。当您使用我检索的应用程序登录并在我的 CredentialS
编辑:这个问题已经在 apphacker 和 ConcernedOfTunbridgeWells 的帮助下得到解决。我已更新代码以反射(reflect)我将使用的解决方案。 我目前正在编写一个群体智能
我是 C 的新手,我想编写一个程序来检查用户输入的单词是否合法。我已经在 stackoverflow 上搜索了建议,但很多都是针对特定情况的。请在我被激怒之前,我知道这个语法不正确,但正在寻找一些关于
我相信你们中的一些人编写过 C# 类,这些类必须从数据库设置密码/从数据库获取密码。 我假设敏感细节不会以明文形式显示。处理此类数据的推荐程序是什么?检索到的文本是否加密?您是否将 pws 存储在加密
我在 linux 上使用 2.7 之前的 python 版本,想知道如何检索 RUID? 2.7 及更高版本从 os 包中获得了 getresuid,但我似乎找不到 2.6 的等效项 最佳答案 您可以
我已经在 Android 中实现了一个存储对象的标准 LRUCache。每个键都是与存储的对象关联的唯一 ObjectId。我的问题是从缓存中检索对象的唯一方法是通过 ObjectId(无迭代器)。实
这已经被问过很多次了。解决方案(对我有用)是从 packages.config 文件(这就足够了)和 packages 文件夹中删除 *** 包。 这对我来说是一个糟糕的解决方案,因为每次我想安装一些
我有以下文字: #{king} for a ##{day}, ##{fool} for a #{lifetime} 以及以下(损坏的)正则表达式: [^#]#{[a-z]+} 我想匹配所有#{word
我正在寻找一种快速(如高性能,而不是快速修复)解决方案来持久化和检索数千万个小型(大约 1k)二进制对象。每个对象都应该有一个用于检索的唯一 ID(最好是 GUID 或 SHA)。额外的要求是它应该可
有没有办法获取 RegInit 的重置值?通过探测产生的类型的成员?我可以看到 RegInit 将返回类型(例如 UInt )。例如,我将有一个寄存器,我想通过 regmap 对其进行控制。 val
Iv 目前接手了一个项目,其中开发人员在某些表的 json 数组列中存储了 has many 关系。 产品表 ---------------------------- id | product | c
Git 会在任何地方记录推送到远程的历史吗? 我注意到我们能够在 Microsoft VSTS 中查看 Git 存储库的推送历史记录以及每次推送的相关提交。它甚至显示旧的、过时的提交,由于后来的强制推
我是一名优秀的程序员,十分优秀!