showing live data on Weebly page - html

Looking for a way to display live data from either webhook, MQTT, or google sheets on a Weebly website.
I get temperature data from TTN and would like to display it in a nice way on a website for customers to see. the GRAPH app for Weebly doesn't work as intended.

Related

Mobile Banners API For Shopify Mobile APP

In Shopify I want to have a mobile app banners needs to be managed through theme options. I can see lot of paid apps there for mobile app in shopify but i am creating my own custom app by using shopify api's. Is there any way to get the banners/slideshow images as json response?
I tried the following way
We can render sections data using http://test.myshopify.com/?sections=banner , When i tried it is showing html directly. I need only the image url and product or collection id which can be linked.
Is there any way to achieve that?

Embedding Editable Google Sheets: Need Mobile-Friendly View

Problem:
I need a Google Sheet on our members' daily workout signup page to be both editable and mobile-friendly.
Details:
We have a members-only page on our community rowing club Weebly site that includes an editable schedule. It's a Google Sheet open to all members to sign up for workouts. On desktop it's a properly formatted, editable doc but it's a mess on mobile. All of the tab names are superimposed on top of the table itself in large blue font. Looks like this:
members page mobile view
I've tried embedding the document using the Google Sheet embed code (File--Publish to the Web--Entire Document--Web Page) but this is a view-only, uneditable version. I've set the share settings to "Anyone on the internet with this link can edit" and it still isn't editable once it's embedded on our Weebly site.
The site was built by another volunteer a few years ago. This is the editable but mobile-messy embed code we're using now:
iframe width=1400 height=900 src="https://docs.google.com/spreadsheets/d/FILENAME/edit?usp=sharing"></iframe
And here's the embed code provided by Google Sheet that gives us an uneditable but properly formatted table:
iframe src="https://docs.google.com/spreadsheets/d/e/FILENAME/pubhtml?widget=true&headers=false"></iframe
I've replaced "pubhtml?" with "edit?" but that doesn't work. I've added the widget=true&amp parameter to the new embed code; also unsuccessful. Can't find anybody else with the same problem and Weebly can't help me.
Thanks in advance if anybody can help out. I'm clearly not a developer, just a volunteer and fellow member of the club hoping to help.
Some options:
If you can get your users to install the sheets app on their phone then you can link out to the normal sheets url and it should open on the mobile app.
Use Google Forms for data entry.
Sheets is exposed as an API. There may be a 3rd party tool (that stores the data to a sheet of your choosing) that would help out your specific workflow.

Google now cards

I have a html script for flight reservation that shows me google now cards in inbox.
But when I am trying to embed JSON-ld script tags into the HTML content to get those tags in google now cards, the cards completely disappear.
Has anyone worked on google now cards before or knows how to resolve this issue?

Google Drive : Publish website

I have created a small Html page using AngularJS, twitter bootstrap.
To test the functionality in different browser and different screens, I wanted to host it on google drive as explained here
I have done the exact steps. But when I try to preview the html page, I get
web page not available error
.
My Shared Drive which I want to publish

How to buffer results from a webpage to another?

I am using flask for my website.
I want to submit data using a form from my website to another website and then format the results page (an html page) before displaying it on the browser on my website.
After the form is submitted, the browser is directed to results page of that (another) website. Can I redirect again it to my site?
How to process the results page(call its html content as a string in code) ?
Sounds the process like this: user input the data -> your website get the data and post it to another website -> the website return a worked data -> your website receive this data, parse it and display it. I don't know you are familiar with API or not. If you are familiar with it you should know the process is just like using API. You just need to put all the process in a view and add_url_rule for it.