Google Scholar Author Search

I’m trying to create a plug-in to search google scholar’s author field. Right now it erroneously returns 0 results but when I look at the log, it displays all of the hits on google correctly. Any idea what I’m doing wrong?


<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
   <key>Description</key>
   <string>Searches the web using scholar.google.com author.</string>
   <key>EncodingUrl</key>
   <string>UTF-8</string>
   <key>EngineUrl</key>
   <string>http://scholar.google.com/scholar?as_sauthors=_agentQuery_</string>
   <key>Identifier</key>
   <string>com.devon-technologies.google_scholar_author.plugin</string>
   <key>Info</key>
   <string>Google Scholar Author Plugin</string>
   <key>Keyword</key>
   <string>google scholar author Search</string>
   <key>LinksEnd</key>
   <string>&lt;!--z--&gt;</string>
   <key>LinksMatching</key>
   <array>
      <string>/url?</string>
   </array>
   <key>LinksStart</key>
   <string>&lt;!--a--&gt;</string>
   <key>Name</key>
   <string>Google Scholar author search</string>
   <key>OffsetPerPage</key>
   <integer>100</integer>
   <key>ResultsPerPage</key>
   <integer>100</integer>
   <key>Start</key>
   <integer>0</integer>
   <key>Version</key>
   <string>1.0</string>
</dict>
</plist>

Just remove or modify the definitions for LinksStart, LinksEnd and LinksMatching as they’re not valid for Google Scholar.

Thanks. Remove the content of the string leaving it empty or remove both the key and the string?

Remove both the key and the following string.