问题标签 [hybrid]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
665 浏览

php - 混合演示不返回 oauth 请求令牌

我在开始创建谷歌应用市场应用程序时遇到了很多麻烦。

我尝试了很多演示,包括可以从谷歌下载的 php hello world 示例。在每种情况下,openid 部分都可以正常工作,但 oauth 失败了。

我已将其追溯到未返回 oauth 请求令牌的混合 openid/oauth 请求。您可以从 googlecodesamples 此处查看我的混合标准演示版本http://lookmumimontheinternet.com/staging/hybrid/index.php

您可以看到我正在停止重定向并在链接中输出 url 以进行调试。我还输出了 $_REQUEST 对象中返回的所有内容。

这与具有以下清单的市场应用程序相关联:

这是我安装演示的 php 配置(我知道我不应该发布秘密,但它只是一个测试应用程序):

您可以在运行演示时看到即使正在请求它也没有返回 oauth 令牌(据我所知是正确的)。谁能看到我在这里做错了什么?

0 投票
4 回答
639 浏览

c++ - 一起使用 C++ 和脚本

我正在开发简单的游戏作为一种爱好。对于我的新项目,我希望某些部分可以编写脚本。我熟悉python,但不介意学习新语言。这是问题:

我计划在 C++ 中实现寻路、视野、碰撞检测等,但希望将脚本用于 AI 状态机、脚本事件。这种工作使用什么类型的结构?我想我可以让 C++ 程序运行一个 python 进程,该进程又调用 C++ 方法,但它似乎效率低下。另一个想法是开发一个从 python 调用的库,这听起来也不是很吸引人。这样做的常规方法是什么(除了编写我自己的语言和解析器?)我听说 lua 很流行嵌入到 C 程序中。

0 投票
1 回答
505 浏览

oauth - 如何使用 OpenId 执行 OAuth2

我们希望对 Google 在我们网站上提供的服务进行身份验证和授权。OAuth 1.0 可以通过 OpenId Hybrid 扩展与 OpenId 结合。我们可以为 OAuth2.0 实现相同的功能吗?(使用 OpenId 身份验证执行 OAuth2)

0 投票
2 回答
1429 浏览

cuda - 带有 Optimus 的笔记本电脑上的 CUDA 出现问题

我已经在我的华硕 N61J 上安装了 CUDA 工具包 v4.0 RC2 和 GeForce GT 325M (Win7 x64)。设法将 Cuda 与 Visual Studio 2010 集成。

我尝试运行从这里窃取的示例代码http://llpanorama.wordpress.com/2008/05/21/my-first-cuda-program/。程序编译并运行,但 CUDA 返回错误:

好的,我做了一些谷歌搜索并决定安装最新的开发者驱动程序。无论如何都没有帮助-同样的错误=\

也许程序没有“看到”我有一个兼容 CUDA 的硬件?我需要你的帮助!=)

0 投票
1 回答
976 浏览

asp.net-mvc-3 - 带有 WebForms 的 MVC3 路由

我有一个使用 WebForms .Net 4.0 的解决方案。我计划在同一个解决方案中使用 MVC3。我关注了 Scott Hanselman的博客,事情进展顺利。

我不得不承认我对此很陌生。但是,我似乎错过了路由在命名空间方面的真正工作方式的很大一部分。

目前,我们的解决方案有:

因此,您可以使用请求页面

……

我打算添加另一层来类似于 MVC。

当然,这不是真名。但是,我试图让它尽可能接近我的情况。不幸的是,最好遵循这一点,因为我可以使用一些可能添加到同一名称空间的逻辑。此外,在根目录创建类似于控制器、视图、模型的文件夹不适用于我的解决方案。

在 Global.asax 中,我添加了这样一条路线:

我最终尝试的另一个解决方案是扩展 RazorViewEngine。在新引擎的构造函数中,我设置了两个属性如下:

这工作得很好。但是,我只是觉得添加这些路由不像添加 webForm 那样可扩展。我的问题是我真的不想为每条可能的路线添加路线。这意味着,当我添加新视图时,我将有另一个路由或数组条目。那么,我怎样才能让这更简单?我究竟做错了什么?我查看了 Areas,但它似乎强制创建一个 Areas 文件夹并将其放入其中。

谢谢,

0 投票
2 回答
4222 浏览

python - 使用 Django 减去 Web 服务器

我正在编写一个联合客户端,目的是为设备提供一个客户端,以及一个具有相同功能的网站。我将使用 Django 开发网站——这已经决定了;客户端应使用 python 编写,带有 CLI 和 PyQt4 GUI。我一直在编写clinet,它的数据库相当繁重,因为所有内容都被缓存以使其能够在离线时读取。

今天让我感到震惊的是,在我的应用程序中使用 Django 模型是有意义的,以减少客户端和网站之间的重复工作。我的问题是分离它有多容易,以及我的客户端需要多少 Django 才能使用 Django 的模型。AFAIK 我不需要运行服务器,但还需要什么?我有一个想法,为我的客户端生成与网站相同的 html,但使用 Qt 小部件显示它,而不是为浏览器提供页面。

有没有人尝试过这种事情?我已经开始这样做了,但是最好能得到潜在的死胡同或会造成维护噩梦的警告......

0 投票
0 回答
758 浏览

macos - NS2:如何模拟在单个网络中运行两种不同 mac 协议的节点?

我想修改现有的路由协议并模拟它在具有两种不同类型节点的网络上的工作情况,即具有 802.11p 的汽车和具有 802.3 的路边 AP。

有谁知道如何在具有两种不同 MAC 协议(例如 802.11p 与 802.3 组合)的网络上运行路由协议模拟???任何链接我将不胜感激。

0 投票
1 回答
74 浏览

dictionary - Hybrid P2P 的服务器数据目录

我在这里开发了某种类似于 P2P 的系统。我将使用的 P2P 网络类型是混合 P2P。但是,这里有一个问题,我不知道如何解决。这是数据目录。数据目录如何工作?它如何知道哪些节点包含哪些文件?

0 投票
1 回答
413 浏览

entity-framework - Can Entity Framework 4 deal with two different data sources?

First, a little bit of context

I have one desktop application which uses a Paradox database and I am developing a new ASP.NET application using SQL Server to replace the current desktop app.

The transition will happen in tho phases. The first version of the web app will use SQL Server and Paradox at the same time. Legacy entities data will come from Paradox and data from new entities will come from SQL Server. So the desktop and web versions of the app can be used interchangeably.

In the second phase all data from Paradox will be imported to SQL Server. The old desktop app (and the Paradox db) won't be used anymore.

Now, the technical question

Imagine a simple model with two entities:

When I use only SQL Server for both entities everything works fine. But now I want to retrieve customer data from Paradox and user data from SQL Server.

I then create a repository for the customers, with an underlying OleDbConnection using the Paradox provider. Of course, Entity Framework still creates the Customers table in SQL Server, since User has a Customer property.

I then removed the database relationship (FK) between User and Customer. Now I am able to insert a User related to a Customer, even though they're in different databases.

The problem is: when I try to retrieve a user from db [eg: context.Users.Find(id)] I can read the user's ID and Name, but user.Customer is null. I expected to get the customer ID through the user.Customer.ID property, since this data is in the Users table in SQL Server.

Am I going to the right path? If so, how can EF bring the customer ID for the user?

And if not, what would be a good approach for this scenario? I don't want to expose foreign key properties in the model (i.e: i don't want to have a int CustomerId property in the User entity).

Thanks in advance!

0 投票
1 回答
303 浏览

python - 通过没有 TCP 端口的 Flask 发送 URL

我想构建一个混合应用程序(嵌入在桌面应用程序中的 Web 技术)。

我将从 Web 版本开始,然后使用 WebKit 将其嵌入,但我不希望嵌入式版本通过 TCP 端口为请求提供服务。

使用 WebKit (Qt,Gtk) 我可以拦截所有 URL 请求并对其采取行动。

我缺少的是一种无需通过 TCP(或 WSGI)即可调用 Flask URL-to-callable 调度程序的方法。

有什么比使用调试器分析调用堆栈更好的想法吗?