TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: What functionalities have you built using AWS Lambda (or) Serverless?

1 点作者 sriram_iyengar超过 7 年前

1 comment

eberkund超过 7 年前
I wanted to display a Twitter feed on my static site without using the hard to style and tracking script riddled default Twitter timeline widget but Twitter only allows getting a JSON feed of that data with OAuth so I made a Lambda function which runs once every half hour and caches the Twitter timeline on S3 which I can then use a simple AJAX request to retrieve. The code is here: <a href="https:&#x2F;&#x2F;github.com&#x2F;eberkund&#x2F;tweet-reader-lambda" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;eberkund&#x2F;tweet-reader-lambda</a>