mirror of
https://gitlab.com/octospacc/BeeWarehouse.git
synced 2025-06-05 21:59:35 +02:00
[JS Engine] Fix function hack; [Examples] Add FbLikebox;
This commit is contained in:
11
Examples/FbLikebox/FbLikebox.js
Normal file
11
Examples/FbLikebox/FbLikebox.js
Normal file
@ -0,0 +1,11 @@
|
||||
#!/usr/bin/env node
|
||||
const BeeWarehouse = require('../../BeeWarehouse.js');
|
||||
|
||||
let Arguments = { "Source": "profile.php?id=100043901540898" };
|
||||
let FbLikebox = BeeWarehouse.LoadBeesFile('./FbLikebox.xml').FbLikebox;
|
||||
|
||||
let Profile = ExampleCom.Functions.GetProfileInfo(Arguments);
|
||||
console.log(Profile);
|
||||
|
||||
let Posts = ExampleCom.Functions.GetLatestPosts(Arguments);
|
||||
console.log(Posts);
|
24
Examples/FbLikebox/FbLikebox.xml
Normal file
24
Examples/FbLikebox/FbLikebox.xml
Normal file
@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<bees>
|
||||
<bee name="FbLikebox" apiurl="https://www.facebook.com">
|
||||
<set name="LikeboxUrl" value="/plugins/likebox.php?href=https%3A%2F%2Fwww.facebook.com%2F{Source}&stream=true&_fb_noscript=1" arguments="Source">
|
||||
|
||||
<function name="GetProfileInfo" arguments="Source">
|
||||
<request method="GET" path="{LikeboxUrl}" format="HTML">
|
||||
<!-- <value ...> -->
|
||||
</request>
|
||||
</function>
|
||||
|
||||
<function name="GetLatestPosts" arguments="Source">
|
||||
<request method="GET" path="{LikeboxUrl}" format="HTML">
|
||||
<items source="body" path="/html/body//div[@role='feed']/div/div/div[2]">
|
||||
<set name="PostAnchor" value="./div[1]/div[2]/div[1]/div[2]/div/div/div[2]/a">
|
||||
<value name="Message" source="body" path="./div[1]/div[2]/div[2]" key="text"/>
|
||||
<value name="Media" source="body" path="./div[1]/div[1]//a/*[@src]" key="src"/>
|
||||
<value name="Time" source="body" path="{PostAnchor}/abbr" key="data-utime"/>
|
||||
<value name="Url" source="body" path="{PostAnchor}" key="href"/>
|
||||
</items>
|
||||
</request>
|
||||
</function>
|
||||
</bee>
|
||||
</bees>
|
Reference in New Issue
Block a user