Search found 3 matches

by majo
Mon Mar 02, 2015 9:31 pm
Forum: Archive
Topic: USING SOFTWARE R TO OBTAIN PATENT INFORMATION FROM OPS
Replies: 7
Views: 8472

Re: USING SOFTWARE R TO OBTAIN PATENT INFORMATION FROM OPS

It looks like that you are trying to pass the token while getting the data you want. You don't need to do that. OPENPATENTSERVICE URL/rest-services/published-data/search/biblio/?q=thermoanaerobacter Shoud suffice. Remember that you could specify the query further like so: OPENPATENTSERVICE URL/rest-...
by majo
Sat Feb 21, 2015 9:22 pm
Forum: Open Patent Services (OPS) and bulk data subscription products
Topic: Range parameter
Replies: 1
Views: 2672

Range parameter

Hi everyone, Hope you'll be able to help me out here - I really can't figure out what I am doing wrong. I am trying to access information on all patents within a certain cpc-code. Doing that I am iterating over the range-parameter with steps of 100 from one to 12241. It works fine until I reach 2001...
by majo
Sat Feb 21, 2015 6:29 pm
Forum: Archive
Topic: USING SOFTWARE R TO OBTAIN PATENT INFORMATION FROM OPS
Replies: 7
Views: 8472

Re: USING SOFTWARE R TO OBTAIN PATENT INFORMATION FROM OPS

Hi serigasan, It is defiantly possible. Have a peek here, the following code works: #attach libs libs <- c('httr', 'base64enc') lapply(libs, require, character.only = TRUE) #generate auth-credentials key <- 'your_key-here' sec_key <- 'your_secret_key_here' auth_enc <- base64encode(charToRaw(paste0(k...